Lines Matching refs:layout

51 using namespace layout::css;
86 using namespace layout;
746 class PropertiesList : public layout::Table
755 DECL_LINK( ApplyPropertyHdl, layout::Window* );
756 DECL_LINK( FlagToggledHdl, layout::CheckBox* );
811 virtual layout::Window *getWindow() = 0;
812 virtual layout::Container *getContainer() { return NULL; } in getContainer()
820 layout::CheckBox *mpFlag;
824 struct AnyEdit : public AnyWidget, layout::HBox
826 layout::Edit *mpEdit;
828 layout::PushButton *mpExpand;
829 DECL_LINK( ExpandEditHdl, layout::PushButton* );
833 layout::Window *mpWinParent;
836 Widget::PropertyKind aPropKind, layout::Window *pWinParent ) in AnyEdit()
837 … : AnyWidget( pWidget, aPropName, aPropKind ), layout::HBox( 0, false ), mpWinParent( pWinParent ) in AnyEdit()
840 mpExpand = new layout::PushButton( pWinParent, WB_TOGGLE ); in AnyEdit()
853 virtual layout::Window *getWindow() in getWindow()
855 virtual layout::Container *getContainer() in getContainer()
873 mpEdit = new layout::Edit( mpWinParent, WB_BORDER ); in setAsMultiLine()
878 mpEdit = new layout::Edit( mpWinParent, WB_BORDER ); in setAsMultiLine()
997 struct AnyCheckBox : public AnyWidget, layout::CheckBox
1000 Widget::PropertyKind aPropKind, layout::Window *pWinParent ) in AnyCheckBox()
1001 : AnyWidget( pWidget, aPropName, aPropKind ), layout::CheckBox( pWinParent ) in AnyCheckBox()
1016 virtual layout::Window *getWindow() in getWindow()
1041 struct AnyListBox : public AnyWidget, layout::ListBox
1045 … : AnyWidget( pWidget, aPropName, aPropKind ), layout::ListBox( pWinParent, WB_DROPDOWN ) in AnyListBox()
1050 virtual layout::Window *getWindow() in getWindow()
1081 struct AnyComboBox : public AnyWidget, layout::ComboBox
1085 … : AnyWidget( pWidget, aPropName, aPropKind ), layout::ComboBox( pWinParent, WB_DROPDOWN ) in AnyComboBox()
1090 virtual layout::Window *getWindow() in getWindow()
1119 layout::FixedText *mpLabel;
1120 layout::CheckBox *mpFlag;
1124 PropertyEntry( layout::Window *pWinParent, AnyWidget *pAnyWidget ) in PropertyEntry()
1126 mpLabel = new layout::FixedText( pWinParent ); in PropertyEntry()
1134 mpFlag = new layout::CheckBox( pWinParent ); in PropertyEntry()
1152 layout::Window *pWinParent ) in construct()
1189 layout::Window *mpParentWindow;
1192 layout::FixedLine *mpSeparator;
1237 PropertiesList( layout::Dialog *dialog ) in PropertiesList()
1238 : layout::Table( dialog, "properties-box" ) in PropertiesList()
1288 mpSeparator = new layout::FixedLine( mpParentWindow ); in selectedWidget()
1312 IMPL_LINK( PropertiesList::PropertyEntry::AnyWidget, ApplyPropertyHdl, layout::Window *, pWin ) in IMPL_LINK()
1319 IMPL_LINK( PropertiesList::PropertyEntry::AnyWidget, FlagToggledHdl, layout::CheckBox *, pCheck ) in IMPL_LINK()
1352 IMPL_LINK( PropertiesList::PropertyEntry::AnyEdit, ExpandEditHdl, layout::PushButton *, pBtn ) in IMPL_LINK()
1363 DECL_LINK( ItemSelectedHdl, layout::ListBox* );
1364 DECL_LINK( UpPressedHdl, layout::Button* );
1365 DECL_LINK( DownPressedHdl, layout::Button* );
1366 DECL_LINK( RemovePressedHdl, layout::Button* );
1367 layout::PushButton *mpUpButton, *mpDownButton, *mpRemoveButton;
1370 layout::ListBox *mpListBox;
1414 …SortListBox( layout::ListBox *pListBox, layout::PushButton *pUpButton, layout::PushButton *pDownBu… in SortListBox()
1415 layout::PushButton *pRemoveButton ) in SortListBox()
1421 mpUpButton->SetModeImage( layout::Image ( "res/commandimagelist/lc_moveup.png" ) ); in SortListBox()
1425 mpDownButton->SetModeImage( layout::Image ( "res/commandimagelist/lc_movedown.png" ) ); in SortListBox()
1430 mpRemoveButton->SetModeImage( layout::Image ( "res/commandimagelist/sc_closedoc.png" ) ); in SortListBox()
1449 IMPL_LINK( SortListBox, UpPressedHdl, layout::Button *, pBtn ) in IMPL_LINK()
1458 IMPL_LINK( SortListBox, DownPressedHdl, layout::Button *, pBtn ) in IMPL_LINK()
1467 IMPL_LINK( SortListBox, RemovePressedHdl, layout::Button *, pBtn ) in IMPL_LINK()
1476 IMPL_LINK( SortListBox, ItemSelectedHdl, layout::ListBox *, pList ) in IMPL_LINK()
1500 LayoutTree( layout::Dialog *dialog ) in LayoutTree()
1501 : SortListBox( new layout::ListBox( dialog, "layout-tree" ), in LayoutTree()
1502 new layout::PushButton( dialog, "layout-up-button" ), in LayoutTree()
1503 new layout::PushButton( dialog, "layout-down-button" ), in LayoutTree()
1504 new layout::PushButton( dialog, "layout-remove-button" ) ) in LayoutTree()
1506 layout::PeerHandle handle = dialog->GetPeerHandle( "preview-box" ); in LayoutTree()
1681 layout::PushButton *pImportButton, *pExportButton;
1685 DECL_LINK( ImportButtonHdl, layout::PushButton* );
1686 DECL_LINK( ExportButtonHdl, layout::PushButton* );
1697 DECL_LINK( CreateWidgetHdl, layout::Button* );
1699 std::list< layout::PushButton *> maCreateButtons;
1703 EditorImpl( layout::Dialog *dialog,
1711 EditorImpl::EditorImpl( layout::Dialog *dialog, in EditorImpl()
1742 layout::Container aWidgets( dialog, "create-widget" ); in EditorImpl()
1743 layout::Container aContainers( dialog, "create-container" ); in EditorImpl()
1746 layout::PushButton *pBtn = new layout::PushButton( (layout::Window *) dialog ); in EditorImpl()
1753 layout::Image aImg( aPath ); in EditorImpl()
1759 layout::Container *pBox = WIDGETS_SPECS[ i ].bIsContainer ? &aContainers : &aWidgets; in EditorImpl()
1773 pExportButton = new layout::PushButton( dialog, "export-button" ); in EditorImpl()
1781 for ( std::list< layout::PushButton * >::const_iterator i = maCreateButtons.begin(); in ~EditorImpl()
1861 for ( std::list< layout::PushButton *>::const_iterator it = maCreateButtons.begin(); in widgetSelected()
1867 for ( std::list< layout::PushButton *>::const_iterator it = maCreateButtons.begin(); in widgetSelected()
1875 IMPL_LINK( EditorImpl, CreateWidgetHdl, layout::Button *, pBtn ) in IMPL_LINK()
1878 for ( std::list< layout::PushButton *>::const_iterator it = maCreateButtons.begin(); in IMPL_LINK()
1889 IMPL_LINK( EditorImpl, ImportButtonHdl, layout::PushButton *, pBtn ) in IMPL_LINK()
1916 IMPL_LINK( EditorImpl, ExportButtonHdl, layout::PushButton *, pBtn ) in IMPL_LINK()
1927 : layout::Dialog( (Window*) (NULL), "editor.xml", "dialog" ) in Editor()