Changeset 288
- Timestamp:
- Apr 1, 2007, 1:09:27 PM (18 years ago)
- Location:
- trunk/gui
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/gui/Makefile ¶
r241 r288 28 28 -I $(FOUNDATIONPATH)/class_h -I $(FOUNDATIONPATH)/include 29 29 30 # NOM IDL compiler 31 NOMIDLINC = -I$(FOUNDATIONPATH)/idl -I$(TKIDLDIR) \ 32 -I$(DESKTOPPATH)/idl -I ./idl 33 NOMIDLCOMPILER = $(BINDIR)/nom-idl-compiler.exe 34 30 35 ADDLIBS = -l$(OBJDIR)/nobjtk 31 36 # -l$(OBJDIR)/voywp 32 37 33 38 # Define objects to build 34 35 39 36 40 CLASSOBJECTS = $(OBJDIR)/nomwindow.o \ … … 66 70 ################################### 67 71 68 BASE_NOMCOMPILEH = $(IDLCOMP) $(IDLINC) --showcpperrors --header --output-dir=$(CLASSINC) $<72 #BASE_NOMCOMPILEH = $(IDLCOMP) $(IDLINC) --showcpperrors --header --output-dir=$(CLASSINC) $< 69 73 BASE_NOMCOMPILEIH = $(IDLCOMP) $(IDLINC) --showcpperrors --ihfile --output-dir=$(CLASSINC) $< 70 74 BASE_NOMCOMPILEC = $(IDLCOMP) $(IDLINC) --showcpperrors --c-template --output-dir=$(CLASSTEMPLATEDIR) $< 75 76 BASE_NOMCOMPILEH = gcc -E -x c -D__NOM_IDL_COMPILER__ $(NOMIDLINC) $< | $(NOMIDLCOMPILER) --emit-h -d $(CLASSINC) - 77 BASE_NOMCOMPILEIH = gcc -E -x c -D__NOM_IDL_COMPILER__ $(NOMIDLINC) $< | $(NOMIDLCOMPILER) --emit-ih -d $(CLASSINC) - 71 78 72 79 -
TabularUnified trunk/gui/class_c/nommenu.c ¶
r209 r288 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2006 18 * Portions created by the Initial Developer are Copyright (C) 2006-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * … … 65 65 { 66 66 NOMMenuData* nomThis=NOMMenuGetData(nomSelf); 67 GtkWidget* menuItem;68 67 69 68 NOMMenu_nomInit_parent((NOMObject*)nomSelf, ev); -
TabularUnified trunk/gui/class_c/nommenuitem.c ¶
r207 r288 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2006 18 * Portions created by the Initial Developer are Copyright (C) 2006-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * -
TabularUnified trunk/gui/class_c/nomnotebook.c ¶
r207 r288 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2005-200 618 * Portions created by the Initial Developer are Copyright (C) 2005-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * -
TabularUnified trunk/gui/class_c/nomwindow.c ¶
r226 r288 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2005-200 618 * Portions created by the Initial Developer are Copyright (C) 2005-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * -
TabularUnified trunk/gui/idl/nomdraginfo.idl ¶
r241 r288 42 42 interface NOMDragInfo : NOMObject 43 43 { 44 #ifdef __NOM_IDL_COMPILER__ 45 filestem=nomdraginfo; 46 #endif 44 47 /** 45 48 Current class version is 1.0 -
TabularUnified trunk/gui/idl/nomdragwindow.idl ¶
r241 r288 43 43 interface NOMDragWindow : NOMWindow 44 44 { 45 #ifdef __NOM_IDL_COMPILER__ 46 filestem=nomdragwindow; 47 #endif 45 48 /** 46 49 Current class version is 1.0 -
TabularUnified trunk/gui/idl/nommenu.idl ¶
r209 r288 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2005-200 618 * Portions created by the Initial Developer are Copyright (C) 2005-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * … … 49 49 interface NOMMenu : NOMObject 50 50 { 51 #ifdef __NOM_IDL_COMPILER__ 52 filestem=nommenu; 53 #endif 51 54 NOMCLASSVERSION(1, 0); 52 55 … … 56 59 NOMOVERRIDE(nomUnInit); 57 60 58 NOMINSTANCEVAR(PGtkWidget _pgMenuHandle);61 NOMINSTANCEVAR(PGtkWidget pgMenuHandle); 59 62 }; 60 63 -
TabularUnified trunk/gui/idl/nommenuitem.idl ¶
r164 r288 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2005-200 618 * Portions created by the Initial Developer are Copyright (C) 2005-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * … … 49 49 interface NOMMenuItem : NOMObject 50 50 { 51 #ifdef __NOM_IDL_COMPILER__ 52 filestem=nommenuitem; 53 #endif 51 54 NOMCLASSVERSION(1, 0); 52 55 -
TabularUnified trunk/gui/idl/nomnotebook.idl ¶
r171 r288 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2005-200 618 * Portions created by the Initial Developer are Copyright (C) 2005-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * … … 42 42 interface NOMNoteBook : NOMWindow 43 43 { 44 #ifdef __NOM_IDL_COMPILER__ 45 filestem=nomnotebook; 46 #endif 44 47 NOMCLASSVERSION(1, 0); 45 48 -
TabularUnified trunk/gui/idl/nomwindow.idl ¶
r226 r288 16 16 * The Initial Developer of the Original Code is 17 17 * netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>. 18 * Portions created by the Initial Developer are Copyright (C) 2005-200 618 * Portions created by the Initial Developer are Copyright (C) 2005-2007 19 19 * the Initial Developer. All Rights Reserved. 20 20 * … … 51 51 interface NOMWindow : NOMObject 52 52 { 53 #ifdef __NOM_IDL_COMPILER__ 54 filestem=nomwindow; 55 #endif 53 56 /** 54 57 Current class version is 1.0 … … 104 107 Private variable holding the GtkWidget pointer. 105 108 */ 106 NOMINSTANCEVAR(PGtkWidget _pgWindowHandle);109 NOMINSTANCEVAR(PGtkWidget pgWindowHandle); 107 110 }; 108 111
Note:
See TracChangeset
for help on using the changeset viewer.