!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.16 (Debian). PHP/5.3.3-7+squeeze19 

uname -a: Linux mail.tri-specialutilitydistrict.com 2.6.32-5-amd64 #1 SMP Tue May 13 16:34:35 UTC
2014 x86_64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/doc/libbonoboui2-common/html/   drwxr-xr-x
Free 129.6 GB of 142.11 GB (91.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     libbonoboui-bonobo-ui-container.html (11.14 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
BonoboUIContainer

BonoboUIContainer

BonoboUIContainer — The container interface as implemented for BonoboWindow

Object Hierarchy

  GObject
   +----BonoboObject
         +----BonoboUIContainer

Description

A BonoboUIContainer is a very thin object, it implements the CORBA interface for doing UI merging, but none of the logic. In order to achieve the effect it is associated with a BonoboUIEngine object. Traditionaly the UI container was associated with a BonoboWindow however, this is now strongly deprecated, since the BonoboUIContainer can be used with any BonoboUIEngine, not just that used by BonoboWindow.

Here is how your code should interact with the BonoboUIContainer

Example 6. How to setup a BonoboUIContainer

1
2
3
4
5
6
7
8
9
10
11
{
        BonoboWindow      *window;
        BonoboUIEngine    *engine;
        BonoboUIContainer *container;
        window = BONOBO_WINDOW (
                bonobo_window_new ("Window", "My Test Application"));
        container = bonobo_ui_container_new ();
        engine = bonobo_window_get_ui_engine (window);
        bonobo_ui_container_set_engine (container, engine);
        return window;
}


Details

BonoboUIContainer

typedef struct _BonoboUIContainer BonoboUIContainer;


BonoboUIContainerPrivate

typedef struct _BonoboUIContainerPrivate BonoboUIContainerPrivate;


BonoboUIContainerClass

typedef struct {
	BonoboObjectClass parent;

	POA_Bonobo_UIContainer__epv epv;

	gpointer dummy[2];
} BonoboUIContainerClass;


bonobo_ui_container_new ()

BonoboUIContainer * bonobo_ui_container_new             (void);

Returns :

a newly created BonoboUIContainer

bonobo_ui_container_set_engine ()

void                bonobo_ui_container_set_engine      (BonoboUIContainer *container,
                                                         BonoboUIEngine *engine);

Associates the BonoboUIContainer with a BonoboUIEngine that it will use to handle all the UI merging requests.

container :

the container

engine :

the engine

bonobo_ui_container_get_engine ()

BonoboUIEngine *    bonobo_ui_container_get_engine      (BonoboUIContainer *container);

Get the associated BonoboUIEngine

container :

the UI container

Returns :

the engine

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0068 ]--