summaryrefslogtreecommitdiff
path: root/src/ntl-main.c
blob: e089cbce7de66ec47a8464a11a13c96e51cefffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include "config.h"
#include "nautilus.h"
#include <gnome.h>
#include <libgnorba/gnorba.h>

static int window_count = 0;
static void
check_for_quit(void)
{
  if(--window_count <= 0)
    gtk_main_quit();
}

int main(int argc, char *argv[])
{
  poptContext ctx;
  CORBA_Environment ev;
  CORBA_ORB orb;
  struct poptOption options[] = {
    {NULL}
  };
  GtkWidget *mainwin;

  orb = gnome_CORBA_init_with_popt_table("nautilus", VERSION, &argc, argv, options, 0, &ctx, GNORBA_INIT_SERVER_FUNC, &ev);

  mainwin = gtk_widget_new(nautilus_window_get_type(), "app_id", "nautilus", NULL);
  gtk_widget_show(mainwin);
  window_count++;

  gtk_signal_connect(GTK_OBJECT(mainwin), "destroy", check_for_quit, NULL);

  gtk_main();
  return 0;
}