Extended the example to create a simple button with label.

This commit is contained in:
hoa.nguyen%intel.com 1999-08-31 00:12:15 +00:00
Родитель ae24d4d04a
Коммит e9fc05840b
2 изменённых файлов: 36 добавлений и 2 удалений

Просмотреть файл

@ -41,6 +41,9 @@
#include "nsISupports.h"
#include "nsIFactory.h"
#include "simpleCID.h"
#include <gdk/gdk.h>
#include <gdk/gdkprivate.h>
#include <gtk/gtk.h>
/*------------------------------------------------------------------------------
* Windows Includes
@ -91,6 +94,7 @@ typedef struct _PlatformInstance
typedef struct _PlatformInstance
{
Window window;
GtkWidget *widget;
Display * display;
uint32 x, y;
uint32 width, height;
@ -1049,7 +1053,8 @@ SimplePluginInstance::PlatformNew(void)
nsresult
SimplePluginInstance::PlatformDestroy(void)
{
return NS_OK;
gtk_widget_destroy(fPlatform.widget);
return NS_OK;
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++
@ -1061,6 +1066,18 @@ SimplePluginInstance::PlatformDestroy(void)
nsresult
SimplePluginInstance::PlatformSetWindow(nsPluginWindow* window)
{
if (window == NULL || window->window == NULL)
return NS_ERROR_NULL_POINTER;
fPlatform.widget = (GtkWidget *)window->window;
GtkWidget *button;
button = gtk_button_new_with_label("Hello World");
gtk_layout_put(GTK_LAYOUT(fPlatform.widget), button, 0, 0);
gtk_widget_show(button);
gtk_widget_show(fPlatform.widget);
return NS_OK;
}

Просмотреть файл

@ -41,6 +41,9 @@
#include "nsISupports.h"
#include "nsIFactory.h"
#include "simpleCID.h"
#include <gdk/gdk.h>
#include <gdk/gdkprivate.h>
#include <gtk/gtk.h>
/*------------------------------------------------------------------------------
* Windows Includes
@ -91,6 +94,7 @@ typedef struct _PlatformInstance
typedef struct _PlatformInstance
{
Window window;
GtkWidget *widget;
Display * display;
uint32 x, y;
uint32 width, height;
@ -1049,7 +1053,8 @@ SimplePluginInstance::PlatformNew(void)
nsresult
SimplePluginInstance::PlatformDestroy(void)
{
return NS_OK;
gtk_widget_destroy(fPlatform.widget);
return NS_OK;
}
/*+++++++++++++++++++++++++++++++++++++++++++++++++
@ -1061,6 +1066,18 @@ SimplePluginInstance::PlatformDestroy(void)
nsresult
SimplePluginInstance::PlatformSetWindow(nsPluginWindow* window)
{
if (window == NULL || window->window == NULL)
return NS_ERROR_NULL_POINTER;
fPlatform.widget = (GtkWidget *)window->window;
GtkWidget *button;
button = gtk_button_new_with_label("Hello World");
gtk_layout_put(GTK_LAYOUT(fPlatform.widget), button, 0, 0);
gtk_widget_show(button);
gtk_widget_show(fPlatform.widget);
return NS_OK;
}