- Timestamp:
- Feb 4, 2007, 3:35:19 PM (19 years ago)
- Location:
- trunk/gui
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gui/Makefile
r168 r226 9 9 OBJDIR = ./../../../o 10 10 BINDIR = ./../../../bin 11 DOCDIR = ./../../../docs 12 11 13 CDIR = ./src 12 14 … … 32 34 33 35 CLASSOBJECTS = $(OBJDIR)/nomwindow.o \ 34 $(OBJDIR)/nomfolderwindow.o \35 36 $(OBJDIR)/nommenu.o \ 36 37 $(OBJDIR)/nommenuitem.o \ 37 38 $(OBJDIR)/nomnotebook.o 39 # $(OBJDIR)/nomfolderwindow.o \ 38 40 39 41 40 42 .PRECIOUS: $(CLASSINC)/%.ih $(CLASSCDIR)/%.c $(CDIR)/%.c 43 44 .PHONY: dox 41 45 42 46 all: $(BINDIR)/$(DLLNAME).dll … … 88 92 mkdir -p $(BINDIR) 89 93 mkdir -p $(CLASSTEMPLATEDIR) 94 mkdir -p $(DOCDIR) 95 96 dox: 97 cd ./dox && doxygen gui.dox 90 98 91 99 clean: -
trunk/gui/class_c/nomwindow.c
r207 r226 87 87 } 88 88 89 90 91 92 93 94 95 96 97 98 -
trunk/gui/exports.def
r168 r226 9 9 NOMWindowNewClass 10 10 11 _NOMFolderWindowClassData12 _NOMFolderWindowCClassData13 NOMFolderWindowNewClass11 ; _NOMFolderWindowClassData 12 ; _NOMFolderWindowCClassData 13 ; NOMFolderWindowNewClass 14 14 15 15 _NOMMenuClassData -
trunk/gui/idl/nomwindow.idl
r176 r226 46 46 NOMCLASSNAME(NOMWindow); 47 47 48 /** \class NOMWindow 49 This class represents a toplevel window. 50 */ 48 51 interface NOMWindow : NOMObject 49 52 { 53 /** 54 Current class version is 1.0 55 */ 50 56 NOMCLASSVERSION(1, 0); 51 57 58 /** 59 Query the window handle from the instance data. This is the handle of the toplevel window, 60 not a child window handle. 61 62 \return Toplevel window handle. 63 64 \sa setWindowHandle. 65 */ 52 66 PGtkWidget queryWindowHandle(); 67 68 /** 69 Saves the toplevel window handle in the instance data. 70 71 \remark 72 When overriding don't save any child window handle using this method. It's only 73 for toplevel windows. 74 75 \param pgWidget Handle of a toplevel GTK window. 76 77 \sa queryWindowHandle() 78 */ 53 79 void setWindowHandle(in PGtkWidget pgWidget); 80 81 /** 82 Shows a hidden window. 83 84 \sa present() 85 */ 54 86 void show(); 87 88 /** 89 Hides the window. 90 91 \sa show() 92 */ 55 93 void hide(); 94 95 /** 96 Brings a window to the front if covered by other windows. If the window 97 is iconofied it will be deiconofied and brought to the foreground. 98 99 \sa show() 100 */ 56 101 void present(); 57 102 103 /** 104 Private variable holding the GtkWidget pointer. 105 */ 58 106 NOMINSTANCEVAR(PGtkWidget _pgWindowHandle); 59 107 };
Note:
See TracChangeset
for help on using the changeset viewer.