~damien-moore/+junk/codeblocks

« back to all changes in this revision

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

  • Committer: Damien Moore
  • Date: 2013-10-11 14:25:27 UTC
  • Revision ID: damienlmoore@gmail.com-20131011142527-w13ki0x8yjd7973d
copy of Code::Blocks repo based on SVN rev 9395

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) 2008 Ron Collins
 
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
*/
 
19
 
 
20
#ifndef WXSSASHLAYOUTWINDOW_H
 
21
#define WXSSASHLAYOUTWINDOW_H
 
22
 
 
23
#include "../wxscontainer.h"
 
24
 
 
25
class wxsSashLayoutWindow: public wxsContainer
 
26
{
 
27
    public:
 
28
 
 
29
        wxsSashLayoutWindow(wxsItemResData* Data);
 
30
 
 
31
    private:
 
32
 
 
33
        virtual wxObject* OnBuildPreview(wxWindow* Parent,long Flags);
 
34
        virtual void OnBuildCreatingCode();
 
35
        virtual void OnEnumContainerProperties(long Flags);
 
36
        virtual bool OnCanAddChild(wxsItem* Item,bool ShowMessage);
 
37
 
 
38
        bool    mTop;
 
39
        bool    mBottom;
 
40
        bool    mLeft;
 
41
        bool    mRight;
 
42
        long    mAlign;
 
43
        long    mOrient;
 
44
 
 
45
};
 
46
 
 
47
#endif
 
48