Changeset 288


Ignore:
Timestamp:
Apr 1, 2007, 1:09:27 PM (18 years ago)
Author:
cinc
Message:

Migrated to new IDL compiler

Location:
trunk/gui
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/gui/Makefile

    r241 r288  
    2828                        -I $(FOUNDATIONPATH)/class_h -I $(FOUNDATIONPATH)/include
    2929
     30# NOM IDL compiler
     31NOMIDLINC       =       -I$(FOUNDATIONPATH)/idl -I$(TKIDLDIR) \
     32                        -I$(DESKTOPPATH)/idl -I ./idl
     33NOMIDLCOMPILER  =       $(BINDIR)/nom-idl-compiler.exe
     34
    3035ADDLIBS         =        -l$(OBJDIR)/nobjtk
    3136# -l$(OBJDIR)/voywp
    3237
    3338# Define objects to build
    34 
    3539
    3640CLASSOBJECTS    =       $(OBJDIR)/nomwindow.o \
     
    6670###################################
    6771
    68 BASE_NOMCOMPILEH        =       $(IDLCOMP) $(IDLINC) --showcpperrors --header --output-dir=$(CLASSINC) $<
     72#BASE_NOMCOMPILEH       =       $(IDLCOMP) $(IDLINC) --showcpperrors --header --output-dir=$(CLASSINC) $<
    6973BASE_NOMCOMPILEIH       =       $(IDLCOMP) $(IDLINC) --showcpperrors --ihfile --output-dir=$(CLASSINC) $<
    7074BASE_NOMCOMPILEC        =       $(IDLCOMP) $(IDLINC) --showcpperrors --c-template --output-dir=$(CLASSTEMPLATEDIR) $<
     75
     76BASE_NOMCOMPILEH        =       gcc -E -x c -D__NOM_IDL_COMPILER__ $(NOMIDLINC) $< | $(NOMIDLCOMPILER) --emit-h -d $(CLASSINC) -
     77BASE_NOMCOMPILEIH       =       gcc -E -x c -D__NOM_IDL_COMPILER__ $(NOMIDLINC) $< | $(NOMIDLCOMPILER) --emit-ih -d $(CLASSINC) -
    7178
    7279
  • TabularUnified trunk/gui/class_c/nommenu.c

    r209 r288  
    1616* The Initial Developer of the Original Code is
    1717* 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
    1919* the Initial Developer. All Rights Reserved.
    2020*
     
    6565{
    6666  NOMMenuData* nomThis=NOMMenuGetData(nomSelf);
    67   GtkWidget* menuItem;
    6867
    6968  NOMMenu_nomInit_parent((NOMObject*)nomSelf,  ev);
  • TabularUnified trunk/gui/class_c/nommenuitem.c

    r207 r288  
    1616* The Initial Developer of the Original Code is
    1717* 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
    1919* the Initial Developer. All Rights Reserved.
    2020*
  • TabularUnified trunk/gui/class_c/nomnotebook.c

    r207 r288  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
  • TabularUnified trunk/gui/class_c/nomwindow.c

    r226 r288  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
  • TabularUnified trunk/gui/idl/nomdraginfo.idl

    r241 r288  
    4242interface NOMDragInfo : NOMObject
    4343{
     44#ifdef __NOM_IDL_COMPILER__
     45  filestem=nomdraginfo;
     46#endif
    4447  /**
    4548     Current class version is 1.0
  • TabularUnified trunk/gui/idl/nomdragwindow.idl

    r241 r288  
    4343interface NOMDragWindow : NOMWindow
    4444{
     45#ifdef __NOM_IDL_COMPILER__
     46  filestem=nomdragwindow;
     47#endif
    4548  /**
    4649     Current class version is 1.0
  • TabularUnified trunk/gui/idl/nommenu.idl

    r209 r288  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
     
    4949interface NOMMenu : NOMObject
    5050{
     51#ifdef __NOM_IDL_COMPILER__
     52  filestem=nommenu;
     53#endif
    5154  NOMCLASSVERSION(1, 0);
    5255
     
    5659  NOMOVERRIDE(nomUnInit);
    5760
    58   NOMINSTANCEVAR(PGtkWidget _pgMenuHandle);
     61  NOMINSTANCEVAR(PGtkWidget pgMenuHandle);
    5962};
    6063
  • TabularUnified trunk/gui/idl/nommenuitem.idl

    r164 r288  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
     
    4949interface NOMMenuItem : NOMObject
    5050{
     51#ifdef __NOM_IDL_COMPILER__
     52  filestem=nommenuitem;
     53#endif
    5154  NOMCLASSVERSION(1, 0);
    5255
  • TabularUnified trunk/gui/idl/nomnotebook.idl

    r171 r288  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
     
    4242interface NOMNoteBook : NOMWindow
    4343{
     44#ifdef __NOM_IDL_COMPILER__
     45  filestem=nomnotebook;
     46#endif
    4447  NOMCLASSVERSION(1, 0);
    4548
  • TabularUnified trunk/gui/idl/nomwindow.idl

    r226 r288  
    1616* The Initial Developer of the Original Code is
    1717* netlabs.org: Chris Wohlgemuth <cinc-ml@netlabs.org>.
    18 * Portions created by the Initial Developer are Copyright (C) 2005-2006
     18* Portions created by the Initial Developer are Copyright (C) 2005-2007
    1919* the Initial Developer. All Rights Reserved.
    2020*
     
    5151interface NOMWindow : NOMObject
    5252{
     53#ifdef __NOM_IDL_COMPILER__
     54  filestem=nomwindow;
     55#endif
    5356  /**
    5457     Current class version is 1.0
     
    104107     Private variable holding the GtkWidget pointer.
    105108   */
    106   NOMINSTANCEVAR(PGtkWidget _pgWindowHandle);
     109  NOMINSTANCEVAR(PGtkWidget pgWindowHandle);
    107110};
    108111
Note: See TracChangeset for help on using the changeset viewer.