X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Femugtk.c;h=7d05a697dd1f5f7297069ad595b794e747f6d3bb;hb=bd7fa9a1fba21965467664b72772dddc5e9e0884;hp=d0a4582d50409ae146e7ac044b47a4c5c74f3901;hpb=c361bcde92ff71208eded7e706f25f567c1de793;p=emu8051.git diff --git a/src/emugtk.c b/src/emugtk.c index d0a4582..7d05a69 100644 --- a/src/emugtk.c +++ b/src/emugtk.c @@ -258,20 +258,12 @@ emugtk_window_init(void) mainwin = gtk_window_new(GTK_WINDOW_TOPLEVEL); gtk_window_set_title(GTK_WINDOW(mainwin), PACKAGE); - gtk_window_set_default_size(GTK_WINDOW(mainwin), - MAIN_WIN_WIDTH, MAIN_WIN_HEIGHT); gtk_container_set_border_width(GTK_CONTAINER(mainwin), 0); /* Window DESTROY event. */ g_signal_connect(mainwin, "destroy", G_CALLBACK(WindowDestroyEvent), NULL); - /* - * Setting main window geometry based on command line options - * (if specified). - */ - /*MainWindowSetGeometry();*/ - /* * main_vbox contains the menu bar and body_vbox (for all remaining * items). @@ -292,18 +284,18 @@ emugtk_window_init(void) hbox = gtk_hbox_new(FALSE, 1); /* 8051 registers frame. */ - fixed_frame = regwin_init(REG_WIN_WIDTH, REG_WIN_HEIGHT); + fixed_frame = regwin_init(); gtk_box_pack_start(GTK_BOX(hbox), fixed_frame, true, true, 1); /* Program disassembly frame. */ - fixed_frame = pgmwin_init(PGM_WIN_WIDTH, PGM_WIN_HEIGHT); + fixed_frame = pgmwin_init(); gtk_box_pack_start(GTK_BOX(hbox), fixed_frame, true, true, 1); /* Adding hbox window to main_vbox */ gtk_box_pack_start(GTK_BOX(main_vbox), hbox, true, true, 1); /* Memory dump frame. */ - fixed_frame = memwin_init(MEM_WIN_WIDTH, MEM_WIN_HEIGHT); + fixed_frame = memwin_init(); /* Adding memory dump window to main_vbox */ gtk_box_pack_start(GTK_BOX(main_vbox), fixed_frame, true, true, 1);