Changeset 166


Ignore:
Timestamp:
Jan 3, 2007, 10:27:53 AM (18 years ago)
Author:
cinc
Message:

Added code for object menus.

Location:
trunk/desktop
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/desktop/class_c/wpclassmanager.c

    r154 r166  
    5050#include "desktop.h"
    5151
    52 NOM_Scope CORBA_boolean NOMLINK impl_WPClassMgr_wpRegisterMenuItems(WPClassMgr* nomSelf, const gpointer ptrMenuItemInfo, CORBA_Environment *ev)
     52
     53NOM_Scope CORBA_boolean NOMLINK impl_WPClassMgr_wpRegisterMenuItems(WPClassMgr* nomSelf, CORBA_unsigned_long* ptrMenuItemInfo, CORBA_Environment *ev)
    5354{
    5455/* WPClassMgrData* nomThis=WPClassMgrGetData(nomSelf); */
    55   CORBA_boolean nomRetval=FALSE;
     56  CORBA_boolean nomRetval;
    5657
    5758  return nomRetval;
  • TabularUnified trunk/desktop/class_c/wpfolder.c

    r146 r166  
    242242    case OPEN_DEFAULT:
    243243      {
    244         NOMFolderWindow * nomFldrWindow;
     244        static NOMFolderWindow * nomFldrWindow;
    245245
    246246#warning !!!!! Folder window must be inserted into inuse list !!!!!
     
    320320
    321321#warning !!!!! This is only for testing !!!!!
    322   priv->gtkIconView=NOMFolderWindow_getContainerHandle(nomFldrWindow, ev);
     322  priv->gtkIconView=NOMFolderWindow_queryContainerHandle(nomFldrWindow, ev);
    323323
    324324  /* Show the new window */
  • TabularUnified trunk/desktop/class_c/wpobject.c

    r152 r166  
    6363
    6464#include "wpobject.ih"
    65 
    6665#include "nomfolderwindow.h"
     66
     67/*************** Local vars ************************************/
     68
     69static nomId WPObjectNomId;
     70
     71/***************************************************************/
    6772
    6873NOM_Scope gpointer NOMLINK impl_WPObject_wpAllocMem(WPObject* nomSelf, const CORBA_unsigned_long cbBytes,
     
    146151  WPObjectData* nomThis=WPObjectGetData(nomSelf);
    147152
     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
    148158  /* Make sure a title exists (even if it's an empty string */
    149159  _pnomStringTitle=NOMStringNew();
     
    264274
    265275  /* 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,
    267277                 gtk_get_current_event_time());
     278
    268279  return nomMenu;
    269280}
    270281
    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)
     282NOM_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
     299NOM_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)
    278302{
    279303/* WPObjectData* nomThis=WPObjectGetData(nomSelf); */
     
    282306
    283307NOM_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,
    286309                                                                 CORBA_Environment *ev)
    287310{
    288311/* 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    }
    291323  return nomRetval;
    292324}
    293325
     326/*
     327  Callback for desktop menu items. This callback takes the object pointer and call wpMenuItemSelected()
     328  of the object.
     329 */
     330static 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 */
    294351NOM_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  
    3838#include "nomclassmanager.idl"
    3939
     40native wpMenuItemInfo;
     41
    4042interface WPClassMgr : NOMClassMgr
    4143{
    4244  NOMCLASSVERSION(1, 0);
    4345
    44   boolean  wpRegisterMenuItems(in gpointer ptrMenuItemInfo);
     46  boolean  wpRegisterMenuItems(inout unsigned long ptrMenuItemInfo);
    4547
    4648};
  • TabularUnified trunk/desktop/idl/wpfolder.idl

    r146 r166  
    4040/*#include "nomfolderwindow.idl"*/
    4141
     42#ifndef NOMFolderWindow_defined
     43#define NOMFolderWindow_defined
    4244native PNOMFolderWindow;
     45#endif
    4346
    4447NOMCLASSNAME(WPFolder);
  • TabularUnified trunk/desktop/idl/wpobject.idl

    r152 r166  
    4141#include "nomstring.idl"
    4242#include "nommenu.idl"
    43 
     43#include "nommenuitem.idl"
    4444
    4545#ifndef NOMFolderWindow_defined
     
    8686  void wpFilterMenu(in PNOMFolderWindow nomFolder, in PNOMMenu nomMenu, in unsigned long ulMenuType,
    8787                    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);
    9090
    9191  /* Methods overriden by this class */
  • TabularUnified trunk/desktop/src/debug_window.c

    r98 r166  
    121121  va_list arg_ptr;
    122122
     123  return;
     124
    123125  if(store==NULL)
    124126    {
  • TabularUnified trunk/desktop/src/quitwindow.c

    r98 r166  
    6969}
    7070
     71static  GtkWidget *window;
    7172/*
    7273  Main entry point. This function is called from the EMX wrapper. Be aware that gtk_init()
     
    7677{
    7778 /* GtkWidget is the storage type for widgets */
    78     GtkWidget *window;
     79
    7980    GtkWidget *button;
    8081   
  • TabularUnified trunk/desktop/src/vdesktop.c

    r141 r166  
    3333* ***** END LICENSE BLOCK ***** */
    3434
     35#define INCL_DOSPROCESS
    3536#define INCL_DOS
     37#define INCL_DOSPROFILE
     38#define INCL_DOSERRORS
    3639#define INCL_PM
    3740#include <os2.h>
    3841#include <stdio.h>
    3942#include <stdlib.h>
     43#include <string.h>
    4044#include <gtk/gtk.h>
    4145#include "debug_window.h"
     
    4448#include "nom.h"
    4549#include "nomtk.h"
     50#include "nomgc.h"
     51#include "nomguitk.h"
     52#include "nomfolderwindow.h"
    4653#include "wpobject.h"
    4754#include "wpfolder.h"
     
    5057int createQuitWindow(void);
    5158
    52 PNOM_ENV pEnv;
    53 NOMClassMgr *NOMClassMgrObject;
     59static gboolean
     60handleEvent (GtkWidget *widget, GdkEventButton *event, gpointer user_data)
     61{
    5462
     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}
    5570
    56 /* Desktop folder */
    57 WPFolder *wpDesktop;
    5871/*
    5972  Main entry point. This function is called from the EMX wrapper. Be aware that gtk_init()
     
    6275int _System  main_loop()
    6376{
    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? */
    65103
    66  g_message("We started...\n");
     104  nomEndRegisterDLLWithGC(hReg);
    67105
     106  g_message("We started...\n");
    68107
    69108#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);
    73112#endif
    74 
     113 
    75114  /* Create a window with a 'quit' button to terminate us */
    76  createQuitWindow();
    77 
    78 
     115  createQuitWindow();
     116   
    79117  /* Query current dir */
    80118  g_strlcpy(desktopDir, g_get_current_dir(), sizeof(desktopDir));
    81119  dbgPrintf("Desktop: %s", desktopDir);
    82120
    83     /*
    84       Bootstrap our objects...
    85      */
    86     pEnv=nomTkInit();
    87     //dbgPrintf( "nomTKinit returned: %x", pEnv);
     121  /*
     122    Bootstrap our objects...
     123  */
     124  pEnv=nomTkInit();
    88125
    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  }
    97130
    98131
     132  /* Init SOM */
     133  NOMClassMgrObject=nomEnvironmentNew();
     134  //dbgPrintf( "NOMClassMgrObject: %x", NOMClassMgrObject);
     135 
     136  /* Create desktop folder */
     137  wpDesktop=WPFolderNew();
    99138
    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);
    103148
    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);
    108151
    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 ();
    111163
    112164   
    113165#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
    116175
    117     somPrintf("\nNew wpObject: %x\n", wpObject);
    118     somPrintf("  -> Classname is: %s\n", _somGetClassName(wpObject));
     176    printf("And now we quit...\n");
    119177
    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 #endif
    129     /* All GTK applications must have a gtk_main(). Control ends here
    130      * and waits for an event to occur (like a key press or
    131      * mouse event). */
    132     gtk_main ();
    133 
    134     printf("And now we quit...\n");   
    135178  return 0;
    136179}
Note: See TracChangeset for help on using the changeset viewer.