search for: id_quit

Displaying 3 results from an estimated 3 matches for "id_quit".

Did you mean: i_quit
2007 May 19
3
table with no row headers
Is this the right way to turn off row headers? table.rowHeaderMode = LAYOUT_FIX_WIDTH table.rowHeaderWidth = 0 -- vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407
2008 Jun 12
0
[Foxgui-users] Segmentation fault on exit
...ndow with a menubar across the top; one of the entries > in the pull-down menu is an exit button, implemented thus; > > > filemenuQuit_ = new FXMenuCommand > ( > filemenu_, > "&Quit\tCtl-Q", > NULL, > getApp(), > FXApp::ID_QUIT > ); > > which I believe is the standard way of exiting a Fox application window. > viewer also contains a destructor function ~viewer which cleans up all > the memory allocated to the viewer object. It ends with a statement > Info << "Out here\n"; to identify...
2008 Apr 14
3
Copy-paste between FXTable and FXTextfield
...dow menubar = FXMenuBar.new(self, LAYOUT_SIDE_TOP|LAYOUT_FILL_X) # File menu filemenu = FXMenuPane.new(self) FXMenuTitle.new(menubar, "&File", nil, filemenu) FXMenuCommand.new(filemenu, "&Quit\tCtl-Q\tQuit the application", nil, app, FXApp::ID_QUIT) # Field field = FXTextField.new(self, 15) # Table f = FXHorizontalFrame.new(self, LAYOUT_FILL_X|LAYOUT_FILL_Y) table = FXTable.new(f, nil, 0, TABLE_COL_SIZABLE|LAYOUT_FILL_X|LAYOUT_FILL_Y) table.visibleRows = 3 table.visibleColumns = 3 table.setTableS...