Changeset 166
- Timestamp:
- Jan 3, 2007, 10:27:53 AM (18 years ago)
- Location:
- trunk/desktop
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/desktop/class_c/wpclassmanager.c ¶
r154 r166 50 50 #include "desktop.h" 51 51 52 NOM_Scope CORBA_boolean NOMLINK impl_WPClassMgr_wpRegisterMenuItems(WPClassMgr* nomSelf, const gpointer ptrMenuItemInfo, CORBA_Environment *ev) 52 53 NOM_Scope CORBA_boolean NOMLINK impl_WPClassMgr_wpRegisterMenuItems(WPClassMgr* nomSelf, CORBA_unsigned_long* ptrMenuItemInfo, CORBA_Environment *ev) 53 54 { 54 55 /* WPClassMgrData* nomThis=WPClassMgrGetData(nomSelf); */ 55 CORBA_boolean nomRetval =FALSE;56 CORBA_boolean nomRetval; 56 57 57 58 return nomRetval; -
TabularUnified trunk/desktop/class_c/wpfolder.c ¶
r146 r166 242 242 case OPEN_DEFAULT: 243 243 { 244 NOMFolderWindow * nomFldrWindow;244 static NOMFolderWindow * nomFldrWindow; 245 245 246 246 #warning !!!!! Folder window must be inserted into inuse list !!!!! … … 320 320 321 321 #warning !!!!! This is only for testing !!!!! 322 priv->gtkIconView=NOMFolderWindow_ getContainerHandle(nomFldrWindow, ev);322 priv->gtkIconView=NOMFolderWindow_queryContainerHandle(nomFldrWindow, ev); 323 323 324 324 /* Show the new window */ -
TabularUnified trunk/desktop/class_c/wpobject.c ¶
r152 r166 63 63 64 64 #include "wpobject.ih" 65 66 65 #include "nomfolderwindow.h" 66 67 /*************** Local vars ************************************/ 68 69 static nomId WPObjectNomId; 70 71 /***************************************************************/ 67 72 68 73 NOM_Scope gpointer NOMLINK impl_WPObject_wpAllocMem(WPObject* nomSelf, const CORBA_unsigned_long cbBytes, … … 146 151 WPObjectData* nomThis=WPObjectGetData(nomSelf); 147 152 153 /* Get our unique class ID. We need it for example when inserting menu items to 154 specify the namespace. We query it here because getting a GQuark from a string 155 is rather time consuming. The result is saved in a var for later use. */ 156 WPObjectNomId=g_quark_from_string("WPObject"); 157 148 158 /* Make sure a title exists (even if it's an empty string */ 149 159 _pnomStringTitle=NOMStringNew(); … … 264 274 265 275 /* And finally show it */ 266 gtk_menu_popup(GTK_MENU(NOMMenu_ getMenuHandle(nomMenu,ev)), NULL, NULL, NULL, NULL, 0,276 gtk_menu_popup(GTK_MENU(NOMMenu_queryMenuHandle(nomMenu,ev)), NULL, NULL, NULL, NULL, 0, 267 277 gtk_get_current_event_time()); 278 268 279 return nomMenu; 269 280 } 270 281 271 NOM_Scope void NOMLINK impl_WPObject_wpModifyMenu(WPObject* nomSelf, const PNOMFolderWindow nomFolder, const PNOMMenu nomMenu, const CORBA_unsigned_long ulMenuType, CORBA_Environment *ev) 272 { 273 /* WPObjectData* nomThis=WPObjectGetData(nomSelf); */ 274 275 } 276 277 NOM_Scope void NOMLINK impl_WPObject_wpFilterMenu(WPObject* nomSelf, const PNOMFolderWindow nomFolder, const PNOMMenu nomMenu, const CORBA_unsigned_long ulMenuType, const CORBA_unsigned_long ulFlags, CORBA_Environment *ev) 282 NOM_Scope void NOMLINK impl_WPObject_wpModifyMenu(WPObject* nomSelf, const PNOMFolderWindow nomFolder, 283 const PNOMMenu nomMenu, const CORBA_unsigned_long ulMenuType, 284 CORBA_Environment *ev) 285 { 286 NOMMenuItem* mItem; 287 /* WPObjectData* nomThis=WPObjectGetData(nomSelf); */ 288 289 mItem=NOMMenuItemNew(); 290 291 NOMMenuItem_setup(mItem, __FUNCTION__, WPObjectNomId, 0, ev); 292 WPObject_wpInsertMenuItem(nomSelf, nomMenu, mItem, 0, ev); 293 294 mItem=NOMMenuItemNew(); 295 NOMMenuItem_setup(mItem, "Settings...", WPObjectNomId, WPMENUID_PROPERTIES, ev); 296 WPObject_wpInsertMenuItem(nomSelf, nomMenu, mItem, 0, ev); 297 } 298 299 NOM_Scope void NOMLINK impl_WPObject_wpFilterMenu(WPObject* nomSelf, const PNOMFolderWindow nomFolder, 300 const PNOMMenu nomMenu, const CORBA_unsigned_long ulMenuType, 301 const CORBA_unsigned_long ulFlags, CORBA_Environment *ev) 278 302 { 279 303 /* WPObjectData* nomThis=WPObjectGetData(nomSelf); */ … … 282 306 283 307 NOM_Scope CORBA_boolean NOMLINK impl_WPObject_wpMenuItemSelected(WPObject* nomSelf, const PNOMFolderWindow nomFolder, 284 const PNOMMenu nomMenu, 285 const CORBA_unsigned_long ulMenuType, 308 const PNOMMenuItem nomMenuItem, 286 309 CORBA_Environment *ev) 287 310 { 288 311 /* WPObjectData* nomThis=WPObjectGetData(nomSelf); */ 289 CORBA_boolean nomRetval; 290 312 CORBA_boolean nomRetval=FALSE; 313 314 /* We only handle items with in own name space */ 315 if(WPObjectNomId==NOMMenuItem_queryNameSpaceId(nomMenuItem, ev)) 316 { 317 switch(NOMMenuItem_queryId(nomMenuItem, ev)) 318 { 319 default: 320 break; 321 } 322 } 291 323 return nomRetval; 292 324 } 293 325 326 /* 327 Callback for desktop menu items. This callback takes the object pointer and call wpMenuItemSelected() 328 of the object. 329 */ 330 static void menuItemActivateCallBack(GtkMenuItem* gtkMenuItem, gpointer wpObject) 331 { 332 PNOMMenuItem pItem; 333 334 #if 0 335 if(!nomIsObj((WPObject*)wpObject)) 336 return; 337 #endif 338 339 pItem=(PNOMMenuItem) g_object_get_data(G_OBJECT(gtkMenuItem), NOMOBJECT_KEY_STRING); 340 341 WPObject_wpMenuItemSelected((WPObject*) wpObject, NULLHANDLE, 342 pItem, NULLHANDLE); 343 } 344 345 /* 346 This method adds the correct callback function to the menuitem and inserts it into the given menu. 347 348 FIXME: position information for the menu item isn't used yet. The Item is always appended. 349 350 */ 294 351 NOM_Scope void NOMLINK impl_WPObject_wpInsertMenuItem(WPObject* nomSelf, const PNOMMenu nomMenu, 295 const CORBA_unsigned_long ulId, CORBA_Environment *ev) 296 { 297 /* WPObjectData* nomThis=WPObjectGetData(nomSelf); */ 298 299 } 352 const PNOMMenuItem nomMenuItem, 353 const CORBA_unsigned_long ulPosition, CORBA_Environment *ev) 354 { 355 /* WPObjectData* nomThis=WPObjectGetData(nomSelf); */ 356 357 g_signal_connect(NOMMenuItem_queryMenuItemHandle(nomMenuItem, ev), "activate", 358 (GCallback) menuItemActivateCallBack, (gpointer) nomSelf); 359 360 gtk_menu_shell_append(GTK_MENU_SHELL(NOMMenu_queryMenuHandle(nomMenu,ev)), 361 NOMMenuItem_queryMenuItemHandle(nomMenuItem, ev)); 362 363 } 364 365 366 367 -
TabularUnified trunk/desktop/idl/wpclassmanager.idl ¶
r154 r166 38 38 #include "nomclassmanager.idl" 39 39 40 native wpMenuItemInfo; 41 40 42 interface WPClassMgr : NOMClassMgr 41 43 { 42 44 NOMCLASSVERSION(1, 0); 43 45 44 boolean wpRegisterMenuItems(in gpointerptrMenuItemInfo);46 boolean wpRegisterMenuItems(inout unsigned long ptrMenuItemInfo); 45 47 46 48 }; -
TabularUnified trunk/desktop/idl/wpfolder.idl ¶
r146 r166 40 40 /*#include "nomfolderwindow.idl"*/ 41 41 42 #ifndef NOMFolderWindow_defined 43 #define NOMFolderWindow_defined 42 44 native PNOMFolderWindow; 45 #endif 43 46 44 47 NOMCLASSNAME(WPFolder); -
TabularUnified trunk/desktop/idl/wpobject.idl ¶
r152 r166 41 41 #include "nomstring.idl" 42 42 #include "nommenu.idl" 43 43 #include "nommenuitem.idl" 44 44 45 45 #ifndef NOMFolderWindow_defined … … 86 86 void wpFilterMenu(in PNOMFolderWindow nomFolder, in PNOMMenu nomMenu, in unsigned long ulMenuType, 87 87 in unsigned long ulFlags); 88 boolean wpMenuItemSelected(in PNOMFolderWindow nomFolder, in PNOMMenu nomMenu, in unsigned long ulMenuType);89 void wpInsertMenuItem( in PNOMMenu nomMenu, in unsigned long ulId);88 boolean wpMenuItemSelected(in PNOMFolderWindow nomFolder, in PNOMMenuItem nomMenuItem); 89 void wpInsertMenuItem( in PNOMMenu nomMenu, in PNOMMenuItem nomMenuItem, in unsigned long ulPosition); 90 90 91 91 /* Methods overriden by this class */ -
TabularUnified trunk/desktop/src/debug_window.c ¶
r98 r166 121 121 va_list arg_ptr; 122 122 123 return; 124 123 125 if(store==NULL) 124 126 { -
TabularUnified trunk/desktop/src/quitwindow.c ¶
r98 r166 69 69 } 70 70 71 static GtkWidget *window; 71 72 /* 72 73 Main entry point. This function is called from the EMX wrapper. Be aware that gtk_init() … … 76 77 { 77 78 /* GtkWidget is the storage type for widgets */ 78 GtkWidget *window; 79 79 80 GtkWidget *button; 80 81 -
TabularUnified trunk/desktop/src/vdesktop.c ¶
r141 r166 33 33 * ***** END LICENSE BLOCK ***** */ 34 34 35 #define INCL_DOSPROCESS 35 36 #define INCL_DOS 37 #define INCL_DOSPROFILE 38 #define INCL_DOSERRORS 36 39 #define INCL_PM 37 40 #include <os2.h> 38 41 #include <stdio.h> 39 42 #include <stdlib.h> 43 #include <string.h> 40 44 #include <gtk/gtk.h> 41 45 #include "debug_window.h" … … 44 48 #include "nom.h" 45 49 #include "nomtk.h" 50 #include "nomgc.h" 51 #include "nomguitk.h" 52 #include "nomfolderwindow.h" 46 53 #include "wpobject.h" 47 54 #include "wpfolder.h" … … 50 57 int createQuitWindow(void); 51 58 52 PNOM_ENV pEnv; 53 NOMClassMgr *NOMClassMgrObject; 59 static gboolean 60 handleEvent (GtkWidget *widget, GdkEventButton *event, gpointer user_data) 61 { 54 62 63 DosBeep(5000, 100); 64 //g_malloc(1250000); 65 //g_message("%s: allocated...", __FUNCTION__); 66 //WPObject_wpDisplayMenu(wpFolder, pWindow, NULL, 0, 0, NULL); 67 68 return FALSE; 69 } 55 70 56 /* Desktop folder */57 WPFolder *wpDesktop;58 71 /* 59 72 Main entry point. This function is called from the EMX wrapper. Be aware that gtk_init() … … 62 75 int _System main_loop() 63 76 { 64 char desktopDir[CCHMAXPATH]={0}; 77 char desktopDir[CCHMAXPATH]={0}; 78 PNOM_ENV pEnv; 79 NOMClassMgr *NOMClassMgrObject; 80 GtkWidget* window; 81 int a; 82 ULONG pMem; 83 HREGDLL hReg=NULLHANDLE; 84 85 /* Desktop folder */ 86 WPFolder *wpDesktop; 87 88 hReg=nomBeginRegisterDLLWithGC(); 89 if(NULLHANDLE==hReg) 90 return 1; 91 92 /* Register DLLs with the garbage collector */ 93 g_assert(nomRegisterDLLByName(hReg, "GLIB2.DLL" )); 94 g_assert(nomRegisterDLLByName(hReg, "GOBJECT2.DLL")); 95 g_assert(nomRegisterDLLByName(hReg, "GMODULE2.DLL")); 96 g_assert(nomRegisterDLLByName(hReg, "GDK2.DLL")); 97 g_assert(nomRegisterDLLByName(hReg, "GDKPIX2.DLL")); 98 g_assert(nomRegisterDLLByName(hReg, "GTK2.DLL" )); 99 g_assert(nomRegisterDLLByName(hReg, "ATK.DLL" )); 100 g_assert(nomRegisterDLLByName(hReg, "NOBJTK.DLL")); 101 g_assert(nomRegisterDLLByName(hReg, "VDESKTOP.DLL")); 102 /* Add Pango here? */ 65 103 66 g_message("We started...\n");104 nomEndRegisterDLLWithGC(hReg); 67 105 106 g_message("We started...\n"); 68 107 69 108 #if 0 70 /* Initialize thread subsystem */71 if(!g_thread_supported())72 g_thread_init(NULL);109 /* Initialize thread subsystem */ 110 if(!g_thread_supported()) 111 g_thread_init(NULL); 73 112 #endif 74 113 75 114 /* Create a window with a 'quit' button to terminate us */ 76 createQuitWindow(); 77 78 115 createQuitWindow(); 116 79 117 /* Query current dir */ 80 118 g_strlcpy(desktopDir, g_get_current_dir(), sizeof(desktopDir)); 81 119 dbgPrintf("Desktop: %s", desktopDir); 82 120 83 /* 84 Bootstrap our objects... 85 */ 86 pEnv=nomTkInit(); 87 //dbgPrintf( "nomTKinit returned: %x", pEnv); 121 /* 122 Bootstrap our objects... 123 */ 124 pEnv=nomTkInit(); 88 125 89 if(!pEnv) { 90 nomPrintf("Can't initialize NOM environment. Exit...\n"); 91 return(1); 92 } 93 94 /* Init SOM */ 95 NOMClassMgrObject=nomEnvironmentNew(); 96 //dbgPrintf( "NOMClassMgrObject: %x", NOMClassMgrObject); 126 if(!pEnv) { 127 nomPrintf("Can't initialize NOM environment. Exit...\n"); 128 return(1); 129 } 97 130 98 131 132 /* Init SOM */ 133 NOMClassMgrObject=nomEnvironmentNew(); 134 //dbgPrintf( "NOMClassMgrObject: %x", NOMClassMgrObject); 135 136 /* Create desktop folder */ 137 wpDesktop=WPFolderNew(); 99 138 100 WPObject* wpObject; 101 wpObject=WPObjectNew(); 102 //dbgPrintf( "wpObject: %x", wpObject); 139 dbgPrintf( "Created desktop object: %x", wpDesktop); 140 WPFolder_tstSetFullPath(wpDesktop, desktopDir, NULLHANDLE); 141 142 WPFolder_wpOpen(wpDesktop, NULL, OPEN_DEFAULT, NULL, NULL); 143 /* WPFolder_wpPopulate(wpObject, 0,"blabla 2", 0, NULL); */ 144 145 #if 0 146 /* Folder toplevel window. */ 147 window = gtk_window_new (GTK_WINDOW_TOPLEVEL); 103 148 104 /* Create desktop folder */ 105 wpDesktop=WPFolderNew(); 106 dbgPrintf( "Created desktop object: %x", wpDesktop); 107 WPFolder_tstSetFullPath(wpDesktop, desktopDir, NULLHANDLE); 149 /* FIXME: Set default size of folder frame. Will later use a stored value */ 150 gtk_window_set_default_size (GTK_WINDOW (window), 650, 400); 108 151 109 WPFolder_wpOpen(wpDesktop, NULL, OPEN_DEFAULT, NULL, NULL); 110 /* WPFolder_wpPopulate(wpObject, 0,"blabla 2", 0, NULL); */ 152 g_signal_connect (GTK_WIDGET(window), "size-request", 153 G_CALLBACK (handleEvent), NULL/*nomSelf*/); 154 155 gtk_widget_show(window); 156 g_message("Window handle: %x", window); 157 #endif 158 159 /* All GTK applications must have a gtk_main(). Control ends here 160 * and waits for an event to occur (like a key press or 161 * mouse event). */ 162 gtk_main (); 111 163 112 164 113 165 #if 0 114 /* Base classes */ 115 wpObject=WPDataFileNew(); 166 mem=g_malloc(1250000); 167 memset(mem, 0xaa, 10000); 168 // *pGlobalMemInExe=mem; 169 for(a=0;a<50;a++){ 170 g_malloc(1250000); 171 printf("%x %x %x %x %d\n", *mem, *(mem+1), *(mem+2), *(mem+3), 0); 172 //printf("%x\n", *((ULONG*)pGlobalMemInExe)); 173 } 174 #endif 116 175 117 somPrintf("\nNew wpObject: %x\n", wpObject); 118 somPrintf(" -> Classname is: %s\n", _somGetClassName(wpObject)); 176 printf("And now we quit...\n"); 119 177 120 121 /* Test only!!! */122 _tstSetFullPath(wpDesktop, desktopDir);123 124 _wpSetFolder(wpDesktop, NULLHANDLE); /* FIXME: Instance var is zero anyway but this way I don't forget it ;-) */125 _wpOpen(wpDesktop, NULLHANDLE, OPEN_DEFAULT, 0); /* remove parameter later!!! */126 /* _dbgPrintRegisteredClasses(SOMClassMgrObject);*/127 128 #endif129 /* All GTK applications must have a gtk_main(). Control ends here130 * and waits for an event to occur (like a key press or131 * mouse event). */132 gtk_main ();133 134 printf("And now we quit...\n");135 178 return 0; 136 179 }
Note:
See TracChangeset
for help on using the changeset viewer.