[GME-commit]
GMESRC/GME/Interfaces Gme.idl,1.14,1.15 InterfaceVersion.h,1.48,1.49
gme-commit at list.isis.vanderbilt.edu
gme-commit at list.isis.vanderbilt.edu
Sat Jul 24 02:41:56 CDT 2004
- Previous message: [GME-commit]
GMESRC/GME/Gme GMEConsole.cpp,NONE,1.1 GMEConsole.h,NONE,1.1
console.cpp,NONE,1.1 console.h,NONE,1.1 GME.dsp,1.90,1.91
GME.rc,1.123,1.124 GMEApp.cpp,1.121,1.122 GMEDoc.cpp,1.22,1.23
GMEDoc.h,1.8,1.9 GMEOLEApp.cpp,1.6,1.7 GMEOLEApp.h,1.3,1.4
GMEObjectInspector.cpp,1.12,1.13 GmePrintDialog.h,1.2,1.3
MainFrm.cpp,1.24,1.25 MainFrm.h,1.19,1.20 PanningWindow.h,1.3,1.4
resource.h,1.56,1.57
- Next message: [GME-commit]
GMESRC/GME/ObjectInspector ObjectInspector.dsp,1.15,1.16
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /var/lib/gme/GMESRC/GME/Interfaces
In directory braindrain:/tmp/cvs-serv15124/GME/Interfaces
Modified Files:
Gme.idl InterfaceVersion.h
Log Message:
New ActiveX control added: Console Window
CVS User: volgy
Index: Gme.idl
===================================================================
RCS file: /var/lib/gme/GMESRC/GME/Interfaces/Gme.idl,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** Gme.idl 22 Jul 2004 14:05:37 -0000 1.14
--- Gme.idl 24 Jul 2004 06:41:53 -0000 1.15
***************
*** 20,23 ****
--- 20,30 ----
interface IGMEOLEColl;
+ typedef enum msgtype_enum {
+ MSG_NORMAL = 0,
+ MSG_INFO = 1,
+ MSG_WARNING = 2,
+ MSG_ERROR =3
+ } msgtype_enum;
+
// --------------------------- Gme IDL
***************
*** 56,85 ****
[propget, id(7)] HRESULT MgaProject([out, retval] IMgaProject** project);
[propget, id(8)] HRESULT Panels([out, retval] IGMEOLEColl** coll);
// methods:
! [id(9)] HRESULT CreateProject([in] BSTR metaname, [in] BSTR connstr);
! [id(10)] HRESULT OpenProject([in] BSTR connstr);
! [id(11)] HRESULT CreateProjectDialog();
! [id(12)] HRESULT OpenProjectDialog();
! [id(13)] HRESULT CloseProject([in] VARIANT_BOOL saveOnClose);
! [id(14)] HRESULT SaveProject();
! [id(15)] HRESULT SaveProjectAs([in] BSTR connstr);
! [id(16)] HRESULT SaveProjectAsDialog();
! [id(17)] HRESULT ExportProject([in] BSTR connstr);
! [id(18)] HRESULT ImportProject([in] BSTR connstr);
! [id(19)] HRESULT ConstraintsDialog();
! [id(20)] HRESULT CheckAllConstraints();
! [id(21)] HRESULT RegisterParagimsDialog();
! [id(22)] HRESULT RegisterComponentsDialog();
! [id(23)] HRESULT RunComponent([in] BSTR progID);
! [id(24)] HRESULT RunComponentDialog();
! [id(25)] HRESULT SettingsDialog();
! [id(26)] HRESULT Undo();
! [id(27)] HRESULT Redo();
! [id(28)] HRESULT ClearUndoQueue();
! [id(29)] HRESULT ProjectPropertiesDialog();
! [id(30)] HRESULT ShowHelpContents();
! [id(31)] HRESULT ShowAbout();
! [id(32)] HRESULT ShowFCO([in] IMgaFCO* mgaFCO);
};
--- 63,97 ----
[propget, id(7)] HRESULT MgaProject([out, retval] IMgaProject** project);
[propget, id(8)] HRESULT Panels([out, retval] IGMEOLEColl** coll);
+ [propput, id(9)] HRESULT ConsoleContents([in] BSTR contents);
+ [propget, id(9)] HRESULT ConsoleContents([out, retval] BSTR* contents);
// methods:
! [id(10)] HRESULT CreateProject([in] BSTR metaname, [in] BSTR connstr);
! [id(11)] HRESULT OpenProject([in] BSTR connstr);
! [id(12)] HRESULT CreateProjectDialog();
! [id(13)] HRESULT OpenProjectDialog();
! [id(14)] HRESULT CloseProject([in] VARIANT_BOOL saveOnClose);
! [id(15)] HRESULT SaveProject();
! [id(16)] HRESULT SaveProjectAs([in] BSTR connstr);
! [id(17)] HRESULT SaveProjectAsDialog();
! [id(18)] HRESULT ExportProject([in] BSTR connstr);
! [id(19)] HRESULT ImportProject([in] BSTR connstr);
! [id(20)] HRESULT ConstraintsDialog();
! [id(21)] HRESULT CheckAllConstraints();
! [id(22)] HRESULT RegisterParagimsDialog();
! [id(23)] HRESULT RegisterComponentsDialog();
! [id(24)] HRESULT RunComponent([in] BSTR progID);
! [id(25)] HRESULT RunComponentDialog();
! [id(26)] HRESULT SettingsDialog();
! [id(27)] HRESULT Undo();
! [id(28)] HRESULT Redo();
! [id(29)] HRESULT ClearUndoQueue();
! [id(30)] HRESULT ProjectPropertiesDialog();
! [id(31)] HRESULT ShowHelpContents();
! [id(32)] HRESULT ShowAbout();
! [id(33)] HRESULT ShowFCO([in] IMgaFCO* mgaFCO);
! [id(34)] HRESULT ConsoleMessage([in] BSTR msg, [in]msgtype_enum type);
! [id(35)] HRESULT ConsoleClear();
!
};
Index: InterfaceVersion.h
===================================================================
RCS file: /var/lib/gme/GMESRC/GME/Interfaces/InterfaceVersion.h,v
retrieving revision 1.48
retrieving revision 1.49
diff -C2 -d -r1.48 -r1.49
*** InterfaceVersion.h 22 Jul 2004 14:05:37 -0000 1.48
--- InterfaceVersion.h 24 Jul 2004 06:41:53 -0000 1.49
***************
*** 8,12 ****
// CHECKSUM MgaUtil.idl = 9A3E6BD6
// CHECKSUM MgaDecorator.idl = E2851BB1
! // CHECKSUM Gme.idl = 846205EB
// CHECKSUM Parser.idl = FF461681
--- 8,12 ----
// CHECKSUM MgaUtil.idl = 9A3E6BD6
// CHECKSUM MgaDecorator.idl = E2851BB1
! // CHECKSUM Gme.idl = E6F42777
// CHECKSUM Parser.idl = FF461681
***************
*** 18,22 ****
// -- never decrease it
cpp_quote("#ifndef INTERFACE_VERSION")
! cpp_quote("#define INTERFACE_VERSION 0x00020046")
cpp_quote("#endif //INTERFACE_VERSION")
! #define INTERFACE_VERSION 0x00020046
--- 18,22 ----
// -- never decrease it
cpp_quote("#ifndef INTERFACE_VERSION")
! cpp_quote("#define INTERFACE_VERSION 0x00020048")
cpp_quote("#endif //INTERFACE_VERSION")
! #define INTERFACE_VERSION 0x00020048
- Previous message: [GME-commit]
GMESRC/GME/Gme GMEConsole.cpp,NONE,1.1 GMEConsole.h,NONE,1.1
console.cpp,NONE,1.1 console.h,NONE,1.1 GME.dsp,1.90,1.91
GME.rc,1.123,1.124 GMEApp.cpp,1.121,1.122 GMEDoc.cpp,1.22,1.23
GMEDoc.h,1.8,1.9 GMEOLEApp.cpp,1.6,1.7 GMEOLEApp.h,1.3,1.4
GMEObjectInspector.cpp,1.12,1.13 GmePrintDialog.h,1.2,1.3
MainFrm.cpp,1.24,1.25 MainFrm.h,1.19,1.20 PanningWindow.h,1.3,1.4
resource.h,1.56,1.57
- Next message: [GME-commit]
GMESRC/GME/ObjectInspector ObjectInspector.dsp,1.15,1.16
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the GME-commit
mailing list