~ubuntu-branches/ubuntu/hardy/codeblocks/hardy-backports

« back to all changes in this revision

Viewing changes to src/plugins/contrib/wxSmith/wxwidgets/defitems/wxscustomwidget.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Casadevall
  • Date: 2008-07-17 04:39:23 UTC
  • Revision ID: james.westby@ubuntu.com-20080717043923-gmsy5cwkdjswghkm
Tags: upstream-8.02
ImportĀ upstreamĀ versionĀ 8.02

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* This file is part of wxSmith plugin for Code::Blocks Studio
 
3
* Copyright (C) 2006-2007  Bartlomiej Swiecki
 
4
*
 
5
* wxSmith is free software; you can redistribute it and/or modify
 
6
* it under the terms of the GNU General Public License as published by
 
7
* the Free Software Foundation; either version 3 of the License, or
 
8
* (at your option) any later version.
 
9
*
 
10
* wxSmith is distributed in the hope that it will be useful,
 
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
13
* GNU General Public License for more details.
 
14
*
 
15
* You should have received a copy of the GNU General Public License
 
16
* along with wxSmith. If not, see <http://www.gnu.org/licenses/>.
 
17
*
 
18
* $Revision: 4850 $
 
19
* $Id: wxscustomwidget.h 4850 2008-01-29 21:45:49Z byo $
 
20
* $HeadURL: svn://svn.berlios.de/codeblocks/tags/8.02/src/plugins/contrib/wxSmith/wxwidgets/defitems/wxscustomwidget.h $
 
21
*/
 
22
 
 
23
#ifndef WXSCUSTOMWIDGET_H
 
24
#define WXSCUSTOMWIDGET_H
 
25
 
 
26
#include "../wxswidget.h"
 
27
 
 
28
/** \brief Class for custom widgets
 
29
 *
 
30
 * Using custom widget class, User can add it's own widgets here.
 
31
 * Because widgets in XRC must be threated differently from the ones
 
32
 * created using source code, XRC will use additional xml configuration,
 
33
 * source code will must have creating code defined.
 
34
 */
 
35
class wxsCustomWidget: public wxsWidget
 
36
{
 
37
    public:
 
38
        wxsCustomWidget(wxsItemResData* Data);
 
39
 
 
40
    private:
 
41
 
 
42
        virtual void OnBuildCreatingCode();
 
43
        virtual wxObject* OnBuildPreview(wxWindow* Parent,long Flags);
 
44
        virtual void OnEnumWidgetProperties(long Flags);
 
45
        virtual bool OnIsPointer() { return true; }
 
46
        virtual bool OnXmlRead(TiXmlElement* Element,bool IsXRC,bool IsExtra);
 
47
        virtual bool OnXmlWrite(TiXmlElement* Element,bool IsXRC,bool IsExtra);
 
48
 
 
49
        void RebuildXmlData();
 
50
        bool RebuildXmlDataDoc();
 
51
 
 
52
        wxString m_CreatingCode;
 
53
        wxString m_Style;
 
54
        wxString m_XmlData;
 
55
        TiXmlDocument m_XmlDataDoc;
 
56
        wxString m_IncludeFile;
 
57
        bool m_IncludeIsLocal;
 
58
 
 
59
};
 
60
 
 
61
#endif