gerbvhtdocs/doxygen/interface_8c-source.html

1467 lines
134 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>gerbv: src/interface.c Source File</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.6 -->
<div class="navigation" id="top">
<div class="tabs">
<ul>
<li><a href="main.html"><span>Main&nbsp;Page</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="classes.html"><span>Data&nbsp;Structures</span></a></li>
<li class="current"><a href="files.html"><span>Files</span></a></li>
<li><a href="dirs.html"><span>Directories</span></a></li>
<li><a href="examples.html"><span>Examples</span></a></li>
</ul>
</div>
<div class="navpath"><a class="el" href="dir_0fba06f62092f0c8d9ff47b96507f331.html">src</a>
</div>
</div>
<div class="contents">
<h1>interface.c</h1><a href="interface_8c.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
<a name="l00002"></a>00002 <span class="comment"> * gEDA - GNU Electronic Design Automation</span>
<a name="l00003"></a>00003 <span class="comment"> * This file is a part of gerbv.</span>
<a name="l00004"></a>00004 <span class="comment"> *</span>
<a name="l00005"></a>00005 <span class="comment"> * Copyright (C) 2000-2003 Stefan Petersen (spe@stacken.kth.se)</span>
<a name="l00006"></a>00006 <span class="comment"> *</span>
<a name="l00007"></a>00007 <span class="comment"> * $Id$</span>
<a name="l00008"></a>00008 <span class="comment"> *</span>
<a name="l00009"></a>00009 <span class="comment"> * This program is free software; you can redistribute it and/or modify</span>
<a name="l00010"></a>00010 <span class="comment"> * it under the terms of the GNU General Public License as published by</span>
<a name="l00011"></a>00011 <span class="comment"> * the Free Software Foundation; either version 2 of the License, or</span>
<a name="l00012"></a>00012 <span class="comment"> * (at your option) any later version.s</span>
<a name="l00013"></a>00013 <span class="comment"> *</span>
<a name="l00014"></a>00014 <span class="comment"> * This program is distributed in the hope that it toowill be useful,</span>
<a name="l00015"></a>00015 <span class="comment"> * but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
<a name="l00016"></a>00016 <span class="comment"> * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</span>
<a name="l00017"></a>00017 <span class="comment"> * GNU General Public License for more details.</span>
<a name="l00018"></a>00018 <span class="comment"> *</span>
<a name="l00019"></a>00019 <span class="comment"> * You should have received a copy of the GNU General Public License</span>
<a name="l00020"></a>00020 <span class="comment"> * along with this program; if not, write to the Free Software</span>
<a name="l00021"></a>00021 <span class="comment"> * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA</span>
<a name="l00022"></a>00022 <span class="comment"> */</span>
<a name="l00023"></a>00023
<a name="l00029"></a>00029 <span class="preprocessor">#ifdef HAVE_CONFIG_H</span>
<a name="l00030"></a>00030 <span class="preprocessor"></span><span class="preprocessor"># include &lt;config.h&gt;</span>
<a name="l00031"></a>00031 <span class="preprocessor">#endif</span>
<a name="l00032"></a>00032 <span class="preprocessor"></span>
<a name="l00033"></a>00033 <span class="preprocessor">#include &lt;sys/types.h&gt;</span>
<a name="l00034"></a>00034 <span class="preprocessor">#include &lt;sys/stat.h&gt;</span>
<a name="l00035"></a>00035 <span class="preprocessor">#include &lt;unistd.h&gt;</span>
<a name="l00036"></a>00036 <span class="preprocessor">#include &lt;string.h&gt;</span>
<a name="l00037"></a>00037 <span class="preprocessor">#include &lt;stdio.h&gt;</span>
<a name="l00038"></a>00038
<a name="l00039"></a>00039 <span class="preprocessor">#include &lt;gdk/gdkkeysyms.h&gt;</span>
<a name="l00040"></a>00040 <span class="preprocessor">#include &lt;gtk/gtk.h&gt;</span>
<a name="l00041"></a>00041
<a name="l00042"></a>00042 <span class="preprocessor">#include "<a class="code" href="gerbv_8h.html" title="The main header file for the libgerbv library.">gerbv.h</a>"</span>
<a name="l00043"></a>00043 <span class="preprocessor">#include "<a class="code" href="main_8h.html" title="Header info for common structs and functions used for the GUI application.">main.h</a>"</span>
<a name="l00044"></a>00044 <span class="preprocessor">#include "<a class="code" href="callbacks_8h.html" title="Header info for the GUI callback functions.">callbacks.h</a>"</span>
<a name="l00045"></a>00045 <span class="preprocessor">#include "<a class="code" href="interface_8h.html" title="Header info for the GUI building functions for Gerber Viewer.">interface.h</a>"</span>
<a name="l00046"></a>00046 <span class="preprocessor">#include "<a class="code" href="render_8h.html" title="Header info for the rendering support functions for libgerbv.">render.h</a>"</span>
<a name="l00047"></a>00047
<a name="l00048"></a>00048 <span class="preprocessor">#ifdef RENDER_USING_GDK</span>
<a name="l00049"></a>00049 <span class="preprocessor"></span><span class="preprocessor"> #include "<a class="code" href="draw-gdk_8h.html" title="Header info for the GDK rendering functions.">draw-gdk.h</a>"</span>
<a name="l00050"></a>00050 <span class="preprocessor">#else</span>
<a name="l00051"></a>00051 <span class="preprocessor"></span><span class="preprocessor"> #include "<a class="code" href="draw_8h.html" title="Header info for the cairo rendering functions and the related selection calculating...">draw.h</a>"</span>
<a name="l00052"></a>00052 <span class="preprocessor">#endif</span>
<a name="l00053"></a>00053 <span class="preprocessor"></span>
<a name="l00054"></a>00054 <span class="preprocessor">#include "<a class="code" href="gerbv__icon_8h.html" title="Contains the xpm data for the gerbv application icon.">gerbv_icon.h</a>"</span>
<a name="l00055"></a>00055 <span class="preprocessor">#include "<a class="code" href="icons_8h.html" title="XPM info for the toolbar button icons.">icons.h</a>"</span>
<a name="l00056"></a>00056 <span class="keyword">extern</span> <a class="code" href="structgerbv__render__info__t.html">gerbv_render_info_t</a> screenRenderInfo;
<a name="l00057"></a>00057
<a name="l00058"></a>00058 <span class="keyword">static</span> GtkWidget *render_combobox;
<a name="l00059"></a>00059
<a name="l00060"></a>00060 <span class="preprocessor">#define WIN_TITLE "Gerbv -- gEDA's Gerber Viewer"</span>
<a name="l00061"></a>00061 <span class="preprocessor"></span><span class="preprocessor">#define _(String) (String)</span>
<a name="l00062"></a>00062 <span class="preprocessor"></span>
<a name="l00063"></a>00063 <span class="comment">/* ---------------------------------------------- */</span>
<a name="l00064"></a>00064 <span class="keywordtype">void</span>
<a name="l00065"></a>00065 rename_main_window(<span class="keywordtype">char</span> <span class="keyword">const</span>* filename, GtkWidget *main_win)
<a name="l00066"></a>00066 {
<a name="l00067"></a>00067 GString *win_title=g_string_new(NULL);
<a name="l00068"></a>00068 <span class="keyword">static</span> GtkWidget *win=NULL;
<a name="l00069"></a>00069
<a name="l00070"></a>00070 <span class="keywordflow">if</span>( main_win != NULL )
<a name="l00071"></a>00071 win = main_win;
<a name="l00072"></a>00072
<a name="l00073"></a>00073 g_assert(win != NULL);
<a name="l00074"></a>00074
<a name="l00075"></a>00075 g_string_printf (win_title,<span class="stringliteral">"%s version %s: %s"</span>, WIN_TITLE, VERSION, filename);
<a name="l00076"></a>00076 gtk_window_set_title(GTK_WINDOW(win), win_title-&gt;str);
<a name="l00077"></a>00077 g_string_free(win_title,TRUE);
<a name="l00078"></a>00078 }
<a name="l00079"></a>00079
<a name="l00080"></a>00080 <span class="comment">/* ---------------------------------------------- */</span>
<a name="l00081"></a>00081 <span class="keywordtype">void</span>
<a name="l00082"></a>00082 set_window_icon (GtkWidget * this_window)
<a name="l00083"></a>00083 {
<a name="l00084"></a>00084 GdkPixmap *pixmap;
<a name="l00085"></a>00085 GdkBitmap *mask;
<a name="l00086"></a>00086
<a name="l00087"></a>00087 pixmap = gdk_pixmap_create_from_xpm_d (this_window-&gt;window, &amp;mask,
<a name="l00088"></a>00088 &amp;this_window-&gt;style-&gt;bg[GTK_STATE_NORMAL], gerbv_icon_xpm);
<a name="l00089"></a>00089 gdk_window_set_icon (this_window-&gt;window, NULL, pixmap, mask);
<a name="l00090"></a>00090
<a name="l00091"></a>00091 <span class="keywordflow">return</span>;
<a name="l00092"></a>00092 }
<a name="l00093"></a>00093
<a name="l00094"></a>00094 <span class="comment">/* ---------------------------------------------- */</span>
<a name="l00095"></a>00095 <span class="keywordtype">void</span>
<a name="l00096"></a>00096 interface_create_gui (<span class="keywordtype">int</span> req_width, <span class="keywordtype">int</span> req_height)
<a name="l00097"></a>00097 {
<a name="l00098"></a>00098 GtkWidget *mainWindow;
<a name="l00099"></a>00099 GtkWidget *vbox1;
<a name="l00100"></a>00100 GtkWidget *menubar1;
<a name="l00101"></a>00101
<a name="l00102"></a>00102 GtkWidget *menuitem_file;
<a name="l00103"></a>00103 GtkWidget *menuitem_file_menu;
<a name="l00104"></a>00104 GtkWidget *<span class="keyword">new</span>;
<a name="l00105"></a>00105 GtkWidget *open_project;
<a name="l00106"></a>00106 GtkWidget *image33;
<a name="l00107"></a>00107 GtkWidget *open_layer;
<a name="l00108"></a>00108 GtkWidget *revert;
<a name="l00109"></a>00109 GtkWidget *save;
<a name="l00110"></a>00110 GtkWidget *save_as;
<a name="l00111"></a>00111 GtkWidget *save_layer;
<a name="l00112"></a>00112 GtkWidget *save_as_layer;
<a name="l00113"></a>00113 GtkWidget *separatormenuitem1;
<a name="l00114"></a>00114 GtkWidget *export;
<a name="l00115"></a>00115 GtkWidget *export_menu;
<a name="l00116"></a>00116 GtkWidget *png;
<a name="l00117"></a>00117 GtkWidget *separator1;
<a name="l00118"></a>00118 GtkWidget *quit;
<a name="l00119"></a>00119
<a name="l00120"></a>00120 GtkWidget *menuitem_edit;
<a name="l00121"></a>00121 GtkWidget *menuitem_edit_menu;
<a name="l00122"></a>00122 GtkWidget *delete_selected;
<a name="l00123"></a>00123
<a name="l00124"></a>00124 GtkWidget *menuitem_view;
<a name="l00125"></a>00125 GtkWidget *menuitem_view_menu;
<a name="l00126"></a>00126 GtkWidget *zoom_in;
<a name="l00127"></a>00127 GtkWidget *zoom_out;
<a name="l00128"></a>00128 GtkWidget *separator5;
<a name="l00129"></a>00129 GtkWidget *fit_to_window;
<a name="l00130"></a>00130 GtkWidget *menuitem_analyze;
<a name="l00131"></a>00131 GtkWidget *menuitem_analyze_menu;
<a name="l00132"></a>00132 GtkWidget *analyze_active_gerbers;
<a name="l00133"></a>00133 GtkWidget *analyze_active_drill;
<a name="l00134"></a>00134 GtkWidget *analyze_display_selected_obj_props;
<a name="l00135"></a>00135 <span class="comment">/*</span>
<a name="l00136"></a>00136 <span class="comment"> GtkWidget *control_gerber_options;</span>
<a name="l00137"></a>00137 <span class="comment"> */</span>
<a name="l00138"></a>00138 GtkWidget *menubar_tools;
<a name="l00139"></a>00139 GtkWidget *menubar_tools_menu;
<a name="l00140"></a>00140 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00141"></a>00141 <span class="preprocessor"></span> GtkWidget *toggletoolbutton_pointer;
<a name="l00142"></a>00142 GtkWidget *pointer_tool;
<a name="l00143"></a>00143 GdkPixbuf *pointerpixbuf;
<a name="l00144"></a>00144 GtkWidget *pointerimage;
<a name="l00145"></a>00145 <span class="preprocessor">#endif</span>
<a name="l00146"></a>00146 <span class="preprocessor"></span> GtkWidget *pan_tool;
<a name="l00147"></a>00147 GtkWidget *zoom_tool;
<a name="l00148"></a>00148 GtkWidget *measure_tool;
<a name="l00149"></a>00149 GtkWidget *menuitem10;
<a name="l00150"></a>00150 GtkWidget *menuitem10_menu;
<a name="l00151"></a>00151 <span class="comment">/*GtkWidget *online_manual;*/</span>
<a name="l00152"></a>00152 GtkWidget *about;
<a name="l00153"></a>00153 GtkWidget *image34;
<a name="l00154"></a>00154 GtkWidget *toolbar_hbox;
<a name="l00155"></a>00155 GtkWidget *handlebox;
<a name="l00156"></a>00156 GtkWidget *button_toolbar;
<a name="l00157"></a>00157 GtkIconSize tmp_toolbar_icon_size;
<a name="l00158"></a>00158 GtkWidget *toolbutton_new;
<a name="l00159"></a>00159 GtkWidget *toolbutton_open;
<a name="l00160"></a>00160 GtkWidget *toolbutton_revert;
<a name="l00161"></a>00161 GtkWidget *toolbutton_save;
<a name="l00162"></a>00162 GtkWidget *separatortoolitem1;
<a name="l00163"></a>00163 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00164"></a>00164 <span class="preprocessor"></span><span class="preprocessor">#if GTK_CHECK_VERSION(2,10,0)</span>
<a name="l00165"></a>00165 <span class="preprocessor"></span> GtkWidget *print;
<a name="l00166"></a>00166 GtkWidget *toolbutton_print;
<a name="l00167"></a>00167 GtkWidget *separator2;
<a name="l00168"></a>00168 GtkWidget *separatortoolitem2;
<a name="l00169"></a>00169 <span class="preprocessor">#endif</span>
<a name="l00170"></a>00170 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00171"></a>00171 <span class="preprocessor"></span> GtkWidget *toolbutton_zoom_in;
<a name="l00172"></a>00172 GtkWidget *toolbutton_zoom_out;
<a name="l00173"></a>00173 GtkWidget *toolbutton_zoom_fit;
<a name="l00174"></a>00174 <span class="comment">/* Implement these tool buttons later when we have icons */</span>
<a name="l00175"></a>00175 <span class="comment">/* GtkWidget *separatortoolitem3; */</span>
<a name="l00176"></a>00176 <span class="comment">/* GtkWidget *toolbutton_analyze; */</span>
<a name="l00177"></a>00177 <span class="comment">/* GtkWidget *toolbutton_validate;*/</span>
<a name="l00178"></a>00178 <span class="comment">/* GtkWidget *toolbutton_control; */</span>
<a name="l00179"></a>00179 GtkWidget *separatortoolitem4;
<a name="l00180"></a>00180 GtkWidget *toggletoolbutton_pan;
<a name="l00181"></a>00181 GtkWidget *toggletoolbutton_zoom;
<a name="l00182"></a>00182 GtkWidget *toggletoolbutton_measure;
<a name="l00183"></a>00183 GtkWidget *hpaned1;
<a name="l00184"></a>00184 GtkWidget *sidepane_vbox;
<a name="l00185"></a>00185 GtkWidget *sidepane_notebook;
<a name="l00186"></a>00186 GtkWidget *vbox10;
<a name="l00187"></a>00187 GtkWidget *hbox4;
<a name="l00188"></a>00188 GtkWidget *label1;
<a name="l00189"></a>00189 GtkWidget *scrolledwindow1;
<a name="l00190"></a>00190 GtkWidget *hbox1;
<a name="l00191"></a>00191 GtkWidget *button4;
<a name="l00192"></a>00192 GtkWidget *image8;
<a name="l00193"></a>00193 GtkWidget *button5;
<a name="l00194"></a>00194 GtkWidget *image9;
<a name="l00195"></a>00195 GtkWidget *button6;
<a name="l00196"></a>00196 GtkWidget *image10;
<a name="l00197"></a>00197 GtkWidget *button7;
<a name="l00198"></a>00198 GtkWidget *image11;
<a name="l00199"></a>00199 GtkWidget *Layer_label;
<a name="l00200"></a>00200 GtkWidget *vbox11;
<a name="l00201"></a>00201 GtkWidget *messages_scrolledwindow;
<a name="l00202"></a>00202 GtkWidget *message_textview;
<a name="l00203"></a>00203 GtkWidget *clear_messages_button;
<a name="l00204"></a>00204 GtkWidget *Message_label;
<a name="l00205"></a>00205 GtkWidget *vbox2;
<a name="l00206"></a>00206 GtkWidget *main_view_table;
<a name="l00207"></a>00207 GtkWidget *hRuler;
<a name="l00208"></a>00208 GtkWidget *vRuler;
<a name="l00209"></a>00209 GtkWidget *hbox5;
<a name="l00210"></a>00210 GtkWidget *statusbar_label_left;
<a name="l00211"></a>00211 GtkWidget *combobox2;
<a name="l00212"></a>00212 GtkWidget *statusbar_label_right;
<a name="l00213"></a>00213 GtkWidget *drawingarea, *hAdjustment, *vAdjustment, *hScrollbar, *vScrollbar;
<a name="l00214"></a>00214
<a name="l00215"></a>00215 GtkAccelGroup *accel_group;
<a name="l00216"></a>00216 GtkTooltips *tooltips;
<a name="l00217"></a>00217
<a name="l00218"></a>00218 <span class="comment">/* Inline icons */</span>
<a name="l00219"></a>00219 GdkPixbuf *zoompixbuf;
<a name="l00220"></a>00220 GtkWidget *zoomimage;
<a name="l00221"></a>00221 GdkPixbuf *measurepixbuf;
<a name="l00222"></a>00222 GtkWidget *measureimage;
<a name="l00223"></a>00223 GdkPixbuf *movepixbuf;
<a name="l00224"></a>00224 GtkWidget *moveimage;
<a name="l00225"></a>00225
<a name="l00226"></a>00226 GtkWidget *tempImage;
<a name="l00227"></a>00227 GtkWidget *tempMenuItem;
<a name="l00228"></a>00228
<a name="l00229"></a>00229 GtkStockItem item;
<a name="l00230"></a>00230 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00231"></a>00231 <span class="preprocessor"></span> pointerpixbuf = gdk_pixbuf_new_from_inline(-1, pointer, FALSE, NULL);
<a name="l00232"></a>00232 <span class="preprocessor">#endif</span>
<a name="l00233"></a>00233 <span class="preprocessor"></span> movepixbuf = gdk_pixbuf_new_from_inline(-1, move, FALSE, NULL);
<a name="l00234"></a>00234 zoompixbuf = gdk_pixbuf_new_from_inline(-1, lzoom, FALSE, NULL);
<a name="l00235"></a>00235 measurepixbuf = gdk_pixbuf_new_from_inline(-1, ruler, FALSE, NULL);
<a name="l00236"></a>00236
<a name="l00237"></a>00237 tooltips = gtk_tooltips_new();
<a name="l00238"></a>00238
<a name="l00239"></a>00239 accel_group = gtk_accel_group_new ();
<a name="l00240"></a>00240
<a name="l00241"></a>00241 mainWindow = gtk_window_new (GTK_WINDOW_TOPLEVEL);
<a name="l00242"></a>00242 gtk_window_set_title (GTK_WINDOW (mainWindow), _(<span class="stringliteral">"Gerbv -- gEDA's Gerber Viewer"</span>));
<a name="l00243"></a>00243
<a name="l00244"></a>00244 vbox1 = gtk_vbox_new (FALSE, 0);
<a name="l00245"></a>00245 gtk_container_add (GTK_CONTAINER (mainWindow), vbox1);
<a name="l00246"></a>00246
<a name="l00247"></a>00247 menubar1 = gtk_menu_bar_new ();
<a name="l00248"></a>00248 gtk_box_pack_start (GTK_BOX (vbox1), menubar1, FALSE, FALSE, 0);
<a name="l00249"></a>00249
<a name="l00250"></a>00250 menuitem_file = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_File"</span>));
<a name="l00251"></a>00251 gtk_container_add (GTK_CONTAINER (menubar1), menuitem_file);
<a name="l00252"></a>00252
<a name="l00253"></a>00253 menuitem_file_menu = gtk_menu_new ();
<a name="l00254"></a>00254 gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_file), menuitem_file_menu);
<a name="l00255"></a>00255
<a name="l00256"></a>00256 <span class="keyword">new</span> = gtk_image_menu_item_new_from_stock (<span class="stringliteral">"gtk-new"</span>, accel_group);
<a name="l00257"></a>00257 gtk_tooltips_set_tip (tooltips, <span class="keyword">new</span>, <span class="stringliteral">"Close all layers and start a new project"</span>, NULL);
<a name="l00258"></a>00258 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), <span class="keyword">new</span>);
<a name="l00259"></a>00259 gtk_widget_add_accelerator (<span class="keyword">new</span>, <span class="stringliteral">"activate"</span>, accel_group,
<a name="l00260"></a>00260 GDK_n, (GdkModifierType) GDK_CONTROL_MASK,
<a name="l00261"></a>00261 GTK_ACCEL_VISIBLE);
<a name="l00262"></a>00262
<a name="l00263"></a>00263 open_layer = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"Open _Layer(s)..."</span>));
<a name="l00264"></a>00264
<a name="l00265"></a>00265 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), open_layer);
<a name="l00266"></a>00266 gtk_tooltips_set_tip (tooltips, open_layer, <span class="stringliteral">"Open Gerber, drill, or pick and place file(s)"</span>, NULL);
<a name="l00267"></a>00267
<a name="l00268"></a>00268 revert = gtk_image_menu_item_new_from_stock (<span class="stringliteral">"gtk-revert-to-saved"</span>, accel_group);
<a name="l00269"></a>00269 gtk_tooltips_set_tip (tooltips, revert, <span class="stringliteral">"Reload all layers"</span>, NULL);
<a name="l00270"></a>00270 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), revert);
<a name="l00271"></a>00271
<a name="l00272"></a>00272 <span class="keywordflow">if</span> (gtk_stock_lookup(<span class="stringliteral">"gtk-save"</span>, &amp;item)) {
<a name="l00273"></a>00273 gchar new_save[] = <span class="stringliteral">"_Save active layer"</span>;
<a name="l00274"></a>00274 item.label = new_save;
<a name="l00275"></a>00275 gtk_stock_add(&amp;item, 1);
<a name="l00276"></a>00276 }
<a name="l00277"></a>00277 save_layer = gtk_image_menu_item_new_from_stock (<span class="stringliteral">"gtk-save"</span>, accel_group);
<a name="l00278"></a>00278 gtk_tooltips_set_tip (tooltips, save_layer, <span class="stringliteral">"Save the active layer"</span>, NULL);
<a name="l00279"></a>00279 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), save_layer);
<a name="l00280"></a>00280
<a name="l00281"></a>00281 <span class="keywordflow">if</span> (gtk_stock_lookup(<span class="stringliteral">"gtk-save-as"</span>, &amp;item)) {
<a name="l00282"></a>00282 gchar new_saveas[] = <span class="stringliteral">"Save active layer _As..."</span>;
<a name="l00283"></a>00283 item.label = new_saveas;
<a name="l00284"></a>00284 gtk_stock_add(&amp;item, 1);
<a name="l00285"></a>00285 }
<a name="l00286"></a>00286 save_as_layer = gtk_image_menu_item_new_from_stock (<span class="stringliteral">"gtk-save-as"</span>, accel_group);
<a name="l00287"></a>00287 gtk_tooltips_set_tip (tooltips, save_as_layer, <span class="stringliteral">"Save the active layer to a new file"</span>, NULL);
<a name="l00288"></a>00288 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), save_as_layer);
<a name="l00289"></a>00289
<a name="l00290"></a>00290 separator1 = gtk_separator_menu_item_new ();
<a name="l00291"></a>00291 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), separator1);
<a name="l00292"></a>00292 gtk_widget_set_sensitive (separator1, FALSE);
<a name="l00293"></a>00293
<a name="l00294"></a>00294 open_project = gtk_image_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Open Project..."</span>));
<a name="l00295"></a>00295 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), open_project);
<a name="l00296"></a>00296 gtk_tooltips_set_tip (tooltips, open_project, <span class="stringliteral">"Open an existing Gerbv project"</span>, NULL);
<a name="l00297"></a>00297 image33 = gtk_image_new_from_stock (<span class="stringliteral">"gtk-open"</span>, GTK_ICON_SIZE_MENU);
<a name="l00298"></a>00298 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (open_project), image33);
<a name="l00299"></a>00299
<a name="l00300"></a>00300
<a name="l00301"></a>00301 save = gtk_image_menu_item_new_with_mnemonic (<span class="stringliteral">"Save Project"</span>);
<a name="l00302"></a>00302 gtk_tooltips_set_tip (tooltips, save, <span class="stringliteral">"Save the current project"</span>, NULL);
<a name="l00303"></a>00303 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), save);
<a name="l00304"></a>00304
<a name="l00305"></a>00305 <span class="keywordflow">if</span> (gtk_stock_lookup(<span class="stringliteral">"gtk-save-as"</span>, &amp;item)) {
<a name="l00306"></a>00306 gchar <span class="keyword">new</span>[] = <span class="stringliteral">"Save Project as..."</span>;
<a name="l00307"></a>00307 item.label = <span class="keyword">new</span>;
<a name="l00308"></a>00308 gtk_stock_add(&amp;item, 1);
<a name="l00309"></a>00309 }
<a name="l00310"></a>00310
<a name="l00311"></a>00311 save_as = gtk_image_menu_item_new_with_mnemonic (<span class="stringliteral">"Save Project As..."</span>);
<a name="l00312"></a>00312 gtk_tooltips_set_tip (tooltips, save_as, <span class="stringliteral">"Save the current project to a new file"</span>, NULL);
<a name="l00313"></a>00313 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), save_as);
<a name="l00314"></a>00314
<a name="l00315"></a>00315 separatormenuitem1 = gtk_separator_menu_item_new ();
<a name="l00316"></a>00316 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), separatormenuitem1);
<a name="l00317"></a>00317 gtk_widget_set_sensitive (separatormenuitem1, FALSE);
<a name="l00318"></a>00318
<a name="l00319"></a>00319 export = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Export"</span>));
<a name="l00320"></a>00320 gtk_tooltips_set_tip (tooltips, export, <span class="stringliteral">"Export all visible layers to a new format"</span>, NULL);
<a name="l00321"></a>00321 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), export);
<a name="l00322"></a>00322
<a name="l00323"></a>00323 export_menu = gtk_menu_new ();
<a name="l00324"></a>00324 gtk_menu_item_set_submenu (GTK_MENU_ITEM (export), export_menu);
<a name="l00325"></a>00325
<a name="l00326"></a>00326 png = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"PNG..."</span>));
<a name="l00327"></a>00327 gtk_container_add (GTK_CONTAINER (export_menu), png);
<a name="l00328"></a>00328 gtk_tooltips_set_tip (tooltips, png, _(<span class="stringliteral">"Export project to a PNG file..."</span>), NULL);
<a name="l00329"></a>00329
<a name="l00330"></a>00330 GtkWidget *rs274x,*drill;
<a name="l00331"></a>00331 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00332"></a>00332 <span class="preprocessor"></span> GtkWidget *pdf;
<a name="l00333"></a>00333 GtkWidget *svg;
<a name="l00334"></a>00334 GtkWidget *postscript;
<a name="l00335"></a>00335
<a name="l00336"></a>00336 pdf = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"PDF..."</span>));
<a name="l00337"></a>00337 gtk_container_add (GTK_CONTAINER (export_menu), pdf);
<a name="l00338"></a>00338 gtk_tooltips_set_tip (tooltips, pdf, _(<span class="stringliteral">"Export project to a PDF file..."</span>), NULL);
<a name="l00339"></a>00339
<a name="l00340"></a>00340 svg = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"SVG..."</span>));
<a name="l00341"></a>00341 gtk_container_add (GTK_CONTAINER (export_menu), svg);
<a name="l00342"></a>00342 gtk_tooltips_set_tip (tooltips, svg, _(<span class="stringliteral">"Export project to a SVG file"</span>), NULL);
<a name="l00343"></a>00343
<a name="l00344"></a>00344 postscript = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"PostScript..."</span>));
<a name="l00345"></a>00345 gtk_container_add (GTK_CONTAINER (export_menu), postscript);
<a name="l00346"></a>00346 gtk_tooltips_set_tip (tooltips, postscript, _(<span class="stringliteral">"Export project to a PostScript file"</span>), NULL);
<a name="l00347"></a>00347 <span class="preprocessor">#endif</span>
<a name="l00348"></a>00348 <span class="preprocessor"></span> rs274x = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"RS-274X (Gerber)..."</span>));
<a name="l00349"></a>00349 gtk_container_add (GTK_CONTAINER (export_menu), rs274x);
<a name="l00350"></a>00350 gtk_tooltips_set_tip (tooltips, rs274x, _(<span class="stringliteral">"Export layer to a RS-274X (Gerber) file"</span>), NULL);
<a name="l00351"></a>00351
<a name="l00352"></a>00352 drill = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"Excellon drill..."</span>));
<a name="l00353"></a>00353 gtk_container_add (GTK_CONTAINER (export_menu), drill);
<a name="l00354"></a>00354 gtk_tooltips_set_tip (tooltips, drill, _(<span class="stringliteral">"Export layer to an Excellon drill file"</span>), NULL);
<a name="l00355"></a>00355
<a name="l00356"></a>00356 separator1 = gtk_separator_menu_item_new ();
<a name="l00357"></a>00357 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), separator1);
<a name="l00358"></a>00358 gtk_widget_set_sensitive (separator1, FALSE);
<a name="l00359"></a>00359 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00360"></a>00360 <span class="preprocessor"></span><span class="preprocessor">#if GTK_CHECK_VERSION(2,10,0)</span>
<a name="l00361"></a>00361 <span class="preprocessor"></span> <span class="keywordflow">if</span> (gtk_stock_lookup(<span class="stringliteral">"gtk-print"</span>, &amp;item)) {
<a name="l00362"></a>00362 gchar <span class="keyword">new</span>[] = <span class="stringliteral">"_Print..."</span>;
<a name="l00363"></a>00363 item.label = <span class="keyword">new</span>;
<a name="l00364"></a>00364 gtk_stock_add(&amp;item, 1);
<a name="l00365"></a>00365 }
<a name="l00366"></a>00366
<a name="l00367"></a>00367 print = gtk_image_menu_item_new_from_stock (<span class="stringliteral">"gtk-print"</span>, accel_group);
<a name="l00368"></a>00368 gtk_tooltips_set_tip (tooltips, print, <span class="stringliteral">"Print the visible layers"</span>, NULL);
<a name="l00369"></a>00369 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), print);
<a name="l00370"></a>00370
<a name="l00371"></a>00371 separator2 = gtk_separator_menu_item_new ();
<a name="l00372"></a>00372 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), separator2);
<a name="l00373"></a>00373 gtk_widget_set_sensitive (separator2, FALSE);
<a name="l00374"></a>00374 <span class="preprocessor">#endif</span>
<a name="l00375"></a>00375 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00376"></a>00376 <span class="preprocessor"></span> quit = gtk_image_menu_item_new_from_stock (<span class="stringliteral">"gtk-quit"</span>, accel_group);
<a name="l00377"></a>00377 gtk_tooltips_set_tip (tooltips, quit, <span class="stringliteral">"Quit Gerbv"</span>, NULL);
<a name="l00378"></a>00378 gtk_container_add (GTK_CONTAINER (menuitem_file_menu), quit);
<a name="l00379"></a>00379
<a name="l00380"></a>00380 <span class="comment">/* --- Next menu item --- */</span>
<a name="l00381"></a>00381 menuitem_edit = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Edit"</span>));
<a name="l00382"></a>00382 gtk_container_add (GTK_CONTAINER (menubar1), menuitem_edit);
<a name="l00383"></a>00383
<a name="l00384"></a>00384 menuitem_edit_menu = gtk_menu_new ();
<a name="l00385"></a>00385 gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_edit), menuitem_edit_menu);
<a name="l00386"></a>00386
<a name="l00387"></a>00387 delete_selected = gtk_image_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Delete selected object(s)"</span>));
<a name="l00388"></a>00388 gtk_tooltips_set_tip (tooltips, delete_selected,
<a name="l00389"></a>00389 <span class="stringliteral">"Delete selected objects"</span>, NULL);
<a name="l00390"></a>00390 tempImage = gtk_image_new_from_stock (<span class="stringliteral">"gtk-remove"</span>, GTK_ICON_SIZE_MENU);
<a name="l00391"></a>00391 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (delete_selected), tempImage);
<a name="l00392"></a>00392 gtk_container_add (GTK_CONTAINER (menuitem_edit_menu), delete_selected);
<a name="l00393"></a>00393
<a name="l00394"></a>00394
<a name="l00395"></a>00395 <span class="comment">/* --- Next menu item --- */</span>
<a name="l00396"></a>00396 menuitem_view = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_View"</span>));
<a name="l00397"></a>00397 gtk_container_add (GTK_CONTAINER (menubar1), menuitem_view);
<a name="l00398"></a>00398
<a name="l00399"></a>00399 menuitem_view_menu = gtk_menu_new ();
<a name="l00400"></a>00400 gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_view), menuitem_view_menu);
<a name="l00401"></a>00401
<a name="l00402"></a>00402 zoom_in = gtk_image_menu_item_new_from_stock (<span class="stringliteral">"gtk-zoom-in"</span>, accel_group);
<a name="l00403"></a>00403 gtk_tooltips_set_tip (tooltips, zoom_in, <span class="stringliteral">"Zoom in"</span>, NULL);
<a name="l00404"></a>00404 gtk_container_add (GTK_CONTAINER (menuitem_view_menu), zoom_in);
<a name="l00405"></a>00405
<a name="l00406"></a>00406 zoom_out = gtk_image_menu_item_new_from_stock (<span class="stringliteral">"gtk-zoom-out"</span>, accel_group);
<a name="l00407"></a>00407 gtk_tooltips_set_tip (tooltips, zoom_out, <span class="stringliteral">"Zoom out"</span>, NULL);
<a name="l00408"></a>00408 gtk_container_add (GTK_CONTAINER (menuitem_view_menu), zoom_out);
<a name="l00409"></a>00409
<a name="l00410"></a>00410 separator5 = gtk_separator_menu_item_new ();
<a name="l00411"></a>00411 gtk_container_add (GTK_CONTAINER (menuitem_view_menu), separator5);
<a name="l00412"></a>00412 gtk_widget_set_sensitive (separator5, FALSE);
<a name="l00413"></a>00413
<a name="l00414"></a>00414 fit_to_window = gtk_image_menu_item_new_from_stock (<span class="stringliteral">"gtk-zoom-fit"</span>, accel_group);
<a name="l00415"></a>00415 gtk_tooltips_set_tip (tooltips, fit_to_window, <span class="stringliteral">"Zoom to fit all visible layers in the window"</span>, NULL);
<a name="l00416"></a>00416 gtk_container_add (GTK_CONTAINER (menuitem_view_menu), fit_to_window);
<a name="l00417"></a>00417
<a name="l00418"></a>00418 menuitem_analyze = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Analyze"</span>));
<a name="l00419"></a>00419 gtk_container_add (GTK_CONTAINER (menubar1), menuitem_analyze);
<a name="l00420"></a>00420
<a name="l00421"></a>00421 menuitem_analyze_menu = gtk_menu_new ();
<a name="l00422"></a>00422 gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem_analyze), menuitem_analyze_menu);
<a name="l00423"></a>00423
<a name="l00424"></a>00424 analyze_active_gerbers = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Analyze visible Gerber layers"</span>));
<a name="l00425"></a>00425 gtk_tooltips_set_tip (tooltips, analyze_active_gerbers,
<a name="l00426"></a>00426 <span class="stringliteral">"Examine a detailed anaylsis of the contents of all visible Gerber layers"</span>, NULL);
<a name="l00427"></a>00427 gtk_container_add (GTK_CONTAINER (menuitem_analyze_menu), analyze_active_gerbers);
<a name="l00428"></a>00428
<a name="l00429"></a>00429 analyze_active_drill = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Analyze visible drill layers"</span>));
<a name="l00430"></a>00430 gtk_tooltips_set_tip (tooltips, analyze_active_drill,
<a name="l00431"></a>00431 <span class="stringliteral">"Examine a detailed anaylsis of the contents of all visible drill layers"</span>, NULL);
<a name="l00432"></a>00432 gtk_container_add (GTK_CONTAINER (menuitem_analyze_menu), analyze_active_drill);
<a name="l00433"></a>00433
<a name="l00434"></a>00434 analyze_display_selected_obj_props = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Display selected object(s) properties"</span>));
<a name="l00435"></a>00435 gtk_tooltips_set_tip (tooltips, analyze_display_selected_obj_props,
<a name="l00436"></a>00436 <span class="stringliteral">"Show the properties of the selected object(s)."</span>, NULL);
<a name="l00437"></a>00437 gtk_container_add (GTK_CONTAINER (menuitem_analyze_menu), analyze_display_selected_obj_props);
<a name="l00438"></a>00438
<a name="l00439"></a>00439 <span class="comment">/* Wait and add in for 2.1??</span>
<a name="l00440"></a>00440 <span class="comment"> control_gerber_options = gtk_menu_item_new_with_mnemonic (_("Control Gerber options..."));</span>
<a name="l00441"></a>00441 <span class="comment"> gtk_tooltips_set_tip (tooltips, control_gerber_options, "Set which Gerber features should be displayed", NULL);</span>
<a name="l00442"></a>00442 <span class="comment"> gtk_container_add (GTK_CONTAINER (menuitem_analyze_menu), control_gerber_options);</span>
<a name="l00443"></a>00443 <span class="comment"> */</span>
<a name="l00444"></a>00444 menubar_tools = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Tools"</span>));
<a name="l00445"></a>00445 gtk_container_add (GTK_CONTAINER (menubar1), menubar_tools);
<a name="l00446"></a>00446
<a name="l00447"></a>00447 menubar_tools_menu = gtk_menu_new ();
<a name="l00448"></a>00448 gtk_menu_item_set_submenu (GTK_MENU_ITEM (menubar_tools), menubar_tools_menu);
<a name="l00449"></a>00449 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00450"></a>00450 <span class="preprocessor"></span> pointer_tool = gtk_image_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Pointer Tool"</span>));
<a name="l00451"></a>00451 <span class="comment">/*</span>
<a name="l00452"></a>00452 <span class="comment"> GtkWidget *tempImage = gtk_image_new_from_pixbuf (pointerpixbuf);</span>
<a name="l00453"></a>00453 <span class="comment"> gtk_image_menu_item_set_image ((GtkImageMenuItem *)pointer_tool, tempImage);</span>
<a name="l00454"></a>00454 <span class="comment"> */</span>
<a name="l00455"></a>00455 gtk_container_add (GTK_CONTAINER (menubar_tools_menu), pointer_tool);
<a name="l00456"></a>00456 gtk_tooltips_set_tip (tooltips, pointer_tool, <span class="stringliteral">"Select objects on the screen"</span>, NULL);
<a name="l00457"></a>00457 gtk_widget_add_accelerator (pointer_tool, <span class="stringliteral">"activate"</span>, accel_group,
<a name="l00458"></a>00458 GDK_F1, (GdkModifierType) 0,
<a name="l00459"></a>00459 GTK_ACCEL_VISIBLE);
<a name="l00460"></a>00460 <span class="preprocessor">#endif</span>
<a name="l00461"></a>00461 <span class="preprocessor"></span> pan_tool = gtk_image_menu_item_new_with_mnemonic (<span class="stringliteral">"Pa_n Tool"</span>);
<a name="l00462"></a>00462 <span class="comment">/*</span>
<a name="l00463"></a>00463 <span class="comment"> tempImage = gtk_image_new_from_pixbuf (movepixbuf);</span>
<a name="l00464"></a>00464 <span class="comment"> gtk_image_menu_item_set_image ((GtkImageMenuItem *)pan_tool, tempImage);</span>
<a name="l00465"></a>00465 <span class="comment"> */</span>
<a name="l00466"></a>00466 gtk_container_add (GTK_CONTAINER (menubar_tools_menu), pan_tool);
<a name="l00467"></a>00467 gtk_tooltips_set_tip (tooltips, pan_tool, <span class="stringliteral">"Pan by left clicking and dragging"</span>, NULL);
<a name="l00468"></a>00468 gtk_widget_add_accelerator (pan_tool, <span class="stringliteral">"activate"</span>, accel_group,
<a name="l00469"></a>00469 GDK_F2, (GdkModifierType) 0,
<a name="l00470"></a>00470 GTK_ACCEL_VISIBLE);
<a name="l00471"></a>00471
<a name="l00472"></a>00472 zoom_tool = gtk_image_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Zoom Tool"</span>));
<a name="l00473"></a>00473 <span class="comment">/*</span>
<a name="l00474"></a>00474 <span class="comment"> tempImage = gtk_image_new_from_pixbuf (zoompixbuf);</span>
<a name="l00475"></a>00475 <span class="comment"> gtk_image_menu_item_set_image ((GtkImageMenuItem *)zoom_tool, tempImage);</span>
<a name="l00476"></a>00476 <span class="comment"> */</span>
<a name="l00477"></a>00477 gtk_container_add (GTK_CONTAINER (menubar_tools_menu), zoom_tool);
<a name="l00478"></a>00478 gtk_tooltips_set_tip (tooltips, zoom_tool, <span class="stringliteral">"Zoom by left clicking or dragging"</span>, NULL);
<a name="l00479"></a>00479 gtk_widget_add_accelerator (zoom_tool, <span class="stringliteral">"activate"</span>, accel_group,
<a name="l00480"></a>00480 GDK_F3, (GdkModifierType) 0,
<a name="l00481"></a>00481 GTK_ACCEL_VISIBLE);
<a name="l00482"></a>00482
<a name="l00483"></a>00483 measure_tool = gtk_image_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Measure Tool"</span>));
<a name="l00484"></a>00484 <span class="comment">/*</span>
<a name="l00485"></a>00485 <span class="comment"> tempImage = gtk_image_new_from_pixbuf (measurepixbuf);</span>
<a name="l00486"></a>00486 <span class="comment"> gtk_image_menu_item_set_image ((GtkImageMenuItem *)measure_tool, tempImage);</span>
<a name="l00487"></a>00487 <span class="comment"> */</span>
<a name="l00488"></a>00488 gtk_container_add (GTK_CONTAINER (menubar_tools_menu), measure_tool);
<a name="l00489"></a>00489 gtk_tooltips_set_tip (tooltips, measure_tool, <span class="stringliteral">"Measure distances on the screen"</span>, NULL);
<a name="l00490"></a>00490 gtk_widget_add_accelerator (measure_tool, <span class="stringliteral">"activate"</span>, accel_group,
<a name="l00491"></a>00491 GDK_F4, (GdkModifierType) 0,
<a name="l00492"></a>00492 GTK_ACCEL_VISIBLE);
<a name="l00493"></a>00493
<a name="l00494"></a>00494 menuitem10 = gtk_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_Help"</span>));
<a name="l00495"></a>00495 gtk_container_add (GTK_CONTAINER (menubar1), menuitem10);
<a name="l00496"></a>00496
<a name="l00497"></a>00497 menuitem10_menu = gtk_menu_new ();
<a name="l00498"></a>00498 gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem10), menuitem10_menu);
<a name="l00499"></a>00499 <span class="comment">/* Not ready for 2.0</span>
<a name="l00500"></a>00500 <span class="comment"> online_manual = gtk_menu_item_new_with_mnemonic (_("_Online Manual..."));</span>
<a name="l00501"></a>00501 <span class="comment"> gtk_container_add (GTK_CONTAINER (menuitem10_menu), online_manual);</span>
<a name="l00502"></a>00502 <span class="comment"> gtk_tooltips_set_tip (tooltips, online_manual, "View the online help documentation", NULL);</span>
<a name="l00503"></a>00503 <span class="comment"> */</span>
<a name="l00504"></a>00504 about = gtk_image_menu_item_new_with_mnemonic (_(<span class="stringliteral">"_About Gerbv..."</span>));
<a name="l00505"></a>00505 gtk_container_add (GTK_CONTAINER (menuitem10_menu), about);
<a name="l00506"></a>00506 gtk_tooltips_set_tip (tooltips, about, <span class="stringliteral">"View information about this software"</span>, NULL);
<a name="l00507"></a>00507
<a name="l00508"></a>00508 image34 = gtk_image_new_from_stock (<span class="stringliteral">"gtk-dialog-info"</span>, GTK_ICON_SIZE_MENU);
<a name="l00509"></a>00509 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (about), image34);
<a name="l00510"></a>00510
<a name="l00511"></a>00511 toolbar_hbox = gtk_hbox_new (FALSE, 0);
<a name="l00512"></a>00512 gtk_box_pack_start (GTK_BOX (vbox1), toolbar_hbox, FALSE, FALSE, 0);
<a name="l00513"></a>00513
<a name="l00514"></a>00514 handlebox = gtk_handle_box_new ();
<a name="l00515"></a>00515
<a name="l00516"></a>00516 gtk_box_pack_start (GTK_BOX (toolbar_hbox), handlebox, TRUE, TRUE, 0);
<a name="l00517"></a>00517
<a name="l00518"></a>00518 button_toolbar = gtk_toolbar_new ();
<a name="l00519"></a>00519 gtk_widget_set_size_request (button_toolbar, 500, -1);
<a name="l00520"></a>00520 gtk_container_add (GTK_CONTAINER (handlebox), button_toolbar);
<a name="l00521"></a>00521 gtk_toolbar_set_style (GTK_TOOLBAR (button_toolbar), GTK_TOOLBAR_ICONS);
<a name="l00522"></a>00522 tmp_toolbar_icon_size = gtk_toolbar_get_icon_size (GTK_TOOLBAR (button_toolbar));
<a name="l00523"></a>00523
<a name="l00524"></a>00524 toolbutton_new = (GtkWidget*) gtk_tool_button_new_from_stock (<span class="stringliteral">"gtk-new"</span>);
<a name="l00525"></a>00525 gtk_tooltips_set_tip (tooltips, toolbutton_new, <span class="stringliteral">"Close all layers and start a new project"</span>, NULL);
<a name="l00526"></a>00526 gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_new);
<a name="l00527"></a>00527
<a name="l00528"></a>00528 toolbutton_open = (GtkWidget*) gtk_tool_button_new_from_stock (<span class="stringliteral">"gtk-open"</span>);
<a name="l00529"></a>00529 gtk_tooltips_set_tip (tooltips, toolbutton_open, <span class="stringliteral">"Open Gerber, drill, or pick and place file(s)"</span>, NULL);
<a name="l00530"></a>00530 gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_open);
<a name="l00531"></a>00531
<a name="l00532"></a>00532 toolbutton_revert = (GtkWidget*) gtk_tool_button_new_from_stock (<span class="stringliteral">"gtk-revert-to-saved"</span>);
<a name="l00533"></a>00533 gtk_tooltips_set_tip (tooltips, toolbutton_revert, <span class="stringliteral">"Reload all layers"</span>, NULL);
<a name="l00534"></a>00534 gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_revert);
<a name="l00535"></a>00535
<a name="l00536"></a>00536 toolbutton_save = (GtkWidget*) gtk_tool_button_new_from_stock (<span class="stringliteral">"gtk-save"</span>);
<a name="l00537"></a>00537 gtk_tooltips_set_tip (tooltips, toolbutton_save, <span class="stringliteral">"Save the current project"</span>, NULL);
<a name="l00538"></a>00538 gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_save);
<a name="l00539"></a>00539
<a name="l00540"></a>00540 separatortoolitem1 = (GtkWidget*) gtk_separator_tool_item_new ();
<a name="l00541"></a>00541 gtk_container_add (GTK_CONTAINER (button_toolbar), separatortoolitem1);
<a name="l00542"></a>00542 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00543"></a>00543 <span class="preprocessor"></span><span class="preprocessor">#if GTK_CHECK_VERSION(2,10,0)</span>
<a name="l00544"></a>00544 <span class="preprocessor"></span> toolbutton_print = (GtkWidget*) gtk_tool_button_new_from_stock (<span class="stringliteral">"gtk-print"</span>);
<a name="l00545"></a>00545 gtk_tooltips_set_tip (tooltips, toolbutton_print, <span class="stringliteral">"Print the visible layers"</span>, NULL);
<a name="l00546"></a>00546 gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_print);
<a name="l00547"></a>00547
<a name="l00548"></a>00548 separatortoolitem2 = (GtkWidget*) gtk_separator_tool_item_new ();
<a name="l00549"></a>00549 gtk_container_add (GTK_CONTAINER (button_toolbar), separatortoolitem2);
<a name="l00550"></a>00550 <span class="preprocessor">#endif</span>
<a name="l00551"></a>00551 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00552"></a>00552 <span class="preprocessor"></span> toolbutton_zoom_in = (GtkWidget*) gtk_tool_button_new_from_stock (<span class="stringliteral">"gtk-zoom-in"</span>);
<a name="l00553"></a>00553 gtk_tooltips_set_tip (tooltips, toolbutton_zoom_in, <span class="stringliteral">"Zoom in"</span>, NULL);
<a name="l00554"></a>00554 gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_zoom_in);
<a name="l00555"></a>00555
<a name="l00556"></a>00556 toolbutton_zoom_out = (GtkWidget*) gtk_tool_button_new_from_stock (<span class="stringliteral">"gtk-zoom-out"</span>);
<a name="l00557"></a>00557 gtk_tooltips_set_tip (tooltips, toolbutton_zoom_out, <span class="stringliteral">"Zoom out"</span>, NULL);
<a name="l00558"></a>00558 gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_zoom_out);
<a name="l00559"></a>00559
<a name="l00560"></a>00560 toolbutton_zoom_fit = (GtkWidget*) gtk_tool_button_new_from_stock (<span class="stringliteral">"gtk-zoom-fit"</span>);
<a name="l00561"></a>00561 gtk_tooltips_set_tip (tooltips, toolbutton_zoom_fit, <span class="stringliteral">"Zoom to fit all visible layers in the window"</span>, NULL);
<a name="l00562"></a>00562 gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_zoom_fit);
<a name="l00563"></a>00563
<a name="l00564"></a>00564 <span class="comment">/* Turn these on later when we have icons for these buttons */</span>
<a name="l00565"></a>00565 <span class="comment">/*</span>
<a name="l00566"></a>00566 <span class="comment"> separatortoolitem3 = (GtkWidget*) gtk_separator_tool_item_new ();</span>
<a name="l00567"></a>00567 <span class="comment"> gtk_container_add (GTK_CONTAINER (button_toolbar), separatortoolitem3);</span>
<a name="l00568"></a>00568 <span class="comment"></span>
<a name="l00569"></a>00569 <span class="comment"> toolbutton_analyze = (GtkWidget*) gtk_tool_button_new_from_stock ("gtk-apply");</span>
<a name="l00570"></a>00570 <span class="comment"> gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_analyze);</span>
<a name="l00571"></a>00571 <span class="comment"></span>
<a name="l00572"></a>00572 <span class="comment"> toolbutton_validate = (GtkWidget*) gtk_tool_button_new_from_stock ("gtk-apply");</span>
<a name="l00573"></a>00573 <span class="comment"> gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_validate);</span>
<a name="l00574"></a>00574 <span class="comment"></span>
<a name="l00575"></a>00575 <span class="comment"> toolbutton_control = (GtkWidget*) gtk_tool_button_new_from_stock ("gtk-apply");</span>
<a name="l00576"></a>00576 <span class="comment"> gtk_container_add (GTK_CONTAINER (button_toolbar), toolbutton_control);</span>
<a name="l00577"></a>00577 <span class="comment">*/</span>
<a name="l00578"></a>00578
<a name="l00579"></a>00579 separatortoolitem4 = (GtkWidget*) gtk_separator_tool_item_new ();
<a name="l00580"></a>00580 gtk_container_add (GTK_CONTAINER (button_toolbar), separatortoolitem4);
<a name="l00581"></a>00581 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00582"></a>00582 <span class="preprocessor"></span> toggletoolbutton_pointer = (GtkWidget*) gtk_toggle_tool_button_new();
<a name="l00583"></a>00583 pointerimage = gtk_image_new_from_pixbuf(pointerpixbuf);
<a name="l00584"></a>00584 gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(toggletoolbutton_pointer),
<a name="l00585"></a>00585 pointerimage);
<a name="l00586"></a>00586 gtk_tooltips_set_tip (tooltips, toggletoolbutton_pointer, <span class="stringliteral">"Select objects on the screen"</span>, NULL);
<a name="l00587"></a>00587 gtk_container_add (GTK_CONTAINER (button_toolbar), toggletoolbutton_pointer);
<a name="l00588"></a>00588 <span class="preprocessor">#endif </span>
<a name="l00589"></a>00589 <span class="preprocessor"></span> toggletoolbutton_pan = (GtkWidget*) gtk_toggle_tool_button_new();
<a name="l00590"></a>00590 moveimage = gtk_image_new_from_pixbuf(movepixbuf);
<a name="l00591"></a>00591 gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(toggletoolbutton_pan),
<a name="l00592"></a>00592 moveimage);
<a name="l00593"></a>00593 gtk_tooltips_set_tip (tooltips, toggletoolbutton_pan, <span class="stringliteral">"Pan by left clicking and dragging"</span>, NULL);
<a name="l00594"></a>00594 gtk_container_add (GTK_CONTAINER (button_toolbar), toggletoolbutton_pan);
<a name="l00595"></a>00595
<a name="l00596"></a>00596
<a name="l00597"></a>00597 toggletoolbutton_zoom = (GtkWidget*) gtk_toggle_tool_button_new();
<a name="l00598"></a>00598 zoomimage = gtk_image_new_from_pixbuf(zoompixbuf);
<a name="l00599"></a>00599 gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(toggletoolbutton_zoom),
<a name="l00600"></a>00600 zoomimage);
<a name="l00601"></a>00601 gtk_tooltips_set_tip (tooltips, toggletoolbutton_zoom, <span class="stringliteral">"Zoom by left clicking or dragging"</span>, NULL);
<a name="l00602"></a>00602 gtk_container_add (GTK_CONTAINER (button_toolbar), toggletoolbutton_zoom);
<a name="l00603"></a>00603
<a name="l00604"></a>00604 toggletoolbutton_measure = (GtkWidget*) gtk_toggle_tool_button_new();
<a name="l00605"></a>00605 measureimage = gtk_image_new_from_pixbuf(measurepixbuf);
<a name="l00606"></a>00606 gtk_tool_button_set_icon_widget(GTK_TOOL_BUTTON(toggletoolbutton_measure),
<a name="l00607"></a>00607 measureimage);
<a name="l00608"></a>00608 gtk_tooltips_set_tip (tooltips, toggletoolbutton_measure, <span class="stringliteral">"Measure distances on the screen"</span>, NULL);
<a name="l00609"></a>00609 gtk_container_add (GTK_CONTAINER (button_toolbar), toggletoolbutton_measure);
<a name="l00610"></a>00610
<a name="l00611"></a>00611 hpaned1 = gtk_hpaned_new ();
<a name="l00612"></a>00612 gtk_box_pack_start (GTK_BOX (vbox1), hpaned1, TRUE, TRUE, 0);
<a name="l00613"></a>00613 gtk_paned_set_position (GTK_PANED (hpaned1), 225);
<a name="l00614"></a>00614
<a name="l00615"></a>00615 sidepane_vbox = gtk_vbox_new (FALSE, 0);
<a name="l00616"></a>00616 gtk_widget_set_size_request (sidepane_vbox, 150, -1);
<a name="l00617"></a>00617
<a name="l00618"></a>00618 gtk_paned_pack1 (GTK_PANED (hpaned1), sidepane_vbox, TRUE, FALSE);
<a name="l00619"></a>00619 gtk_container_set_border_width (GTK_CONTAINER (sidepane_vbox), 5);
<a name="l00620"></a>00620
<a name="l00621"></a>00621 sidepane_notebook = gtk_notebook_new ();
<a name="l00622"></a>00622 gtk_widget_set_size_request (sidepane_notebook, 100, -1);
<a name="l00623"></a>00623 gtk_box_pack_start (GTK_BOX (sidepane_vbox), sidepane_notebook, TRUE, TRUE, 0);
<a name="l00624"></a>00624
<a name="l00625"></a>00625 vbox10 = gtk_vbox_new (FALSE, 3);
<a name="l00626"></a>00626 gtk_container_add (GTK_CONTAINER (sidepane_notebook), vbox10);
<a name="l00627"></a>00627 gtk_widget_set_size_request (vbox10, 82, -1);
<a name="l00628"></a>00628 gtk_container_set_border_width (GTK_CONTAINER (vbox10), 4);
<a name="l00629"></a>00629
<a name="l00630"></a>00630 hbox4 = gtk_hbox_new (FALSE, 0);
<a name="l00631"></a>00631 gtk_box_pack_start (GTK_BOX (vbox10), hbox4, FALSE, FALSE, 0);
<a name="l00632"></a>00632
<a name="l00633"></a>00633 label1 = gtk_label_new (_(<span class="stringliteral">"Rendering: "</span>));
<a name="l00634"></a>00634 gtk_box_pack_start (GTK_BOX (hbox4), label1, FALSE, FALSE, 0);
<a name="l00635"></a>00635
<a name="l00636"></a>00636 render_combobox = gtk_combo_box_new_text ();
<a name="l00637"></a>00637 gtk_box_pack_start (GTK_BOX (hbox4), render_combobox, TRUE, TRUE, 0);
<a name="l00638"></a>00638 <span class="preprocessor">#ifdef RENDER_USING_GDK</span>
<a name="l00639"></a>00639 <span class="preprocessor"></span> gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _(<span class="stringliteral">"Normal"</span>));
<a name="l00640"></a>00640 gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _(<span class="stringliteral">"XOR"</span>));
<a name="l00641"></a>00641 <span class="keywordflow">if</span> (screenRenderInfo.<a class="code" href="structgerbv__render__info__t.html#902b5d841ab7a246a3ffa4fd2a6a9d26">renderType</a> &lt; 2)
<a name="l00642"></a>00642 gtk_combo_box_set_active (GTK_COMBO_BOX (render_combobox), screenRenderInfo.<a class="code" href="structgerbv__render__info__t.html#902b5d841ab7a246a3ffa4fd2a6a9d26">renderType</a>);
<a name="l00643"></a>00643 <span class="preprocessor">#else</span>
<a name="l00644"></a>00644 <span class="preprocessor"></span> gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _(<span class="stringliteral">"Fast"</span>));
<a name="l00645"></a>00645 gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _(<span class="stringliteral">"Fast, with XOR"</span>));
<a name="l00646"></a>00646 gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _(<span class="stringliteral">"Normal"</span>));
<a name="l00647"></a>00647 gtk_combo_box_append_text (GTK_COMBO_BOX (render_combobox), _(<span class="stringliteral">"High quality"</span>));
<a name="l00648"></a>00648 <span class="keywordflow">if</span> (screenRenderInfo.<a class="code" href="structgerbv__render__info__t.html#902b5d841ab7a246a3ffa4fd2a6a9d26">renderType</a> &lt; 4)
<a name="l00649"></a>00649 gtk_combo_box_set_active (GTK_COMBO_BOX (render_combobox), screenRenderInfo.<a class="code" href="structgerbv__render__info__t.html#902b5d841ab7a246a3ffa4fd2a6a9d26">renderType</a>);
<a name="l00650"></a>00650 <span class="preprocessor">#endif</span>
<a name="l00651"></a>00651 <span class="preprocessor"></span> scrolledwindow1 = gtk_scrolled_window_new (NULL, NULL);
<a name="l00652"></a>00652 gtk_box_pack_start (GTK_BOX (vbox10), scrolledwindow1, TRUE, TRUE, 0);
<a name="l00653"></a>00653 gtk_container_set_border_width (GTK_CONTAINER (scrolledwindow1), 2);
<a name="l00654"></a>00654 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwindow1),
<a name="l00655"></a>00655 GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
<a name="l00656"></a>00656 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolledwindow1),
<a name="l00657"></a>00657 GTK_SHADOW_IN);
<a name="l00658"></a>00658
<a name="l00659"></a>00659 hbox1 = gtk_hbox_new (TRUE, 0);
<a name="l00660"></a>00660 gtk_box_pack_start (GTK_BOX (vbox10), hbox1, FALSE, FALSE, 0);
<a name="l00661"></a>00661
<a name="l00662"></a>00662 button4 = gtk_button_new ();
<a name="l00663"></a>00663 gtk_box_pack_start (GTK_BOX (hbox1), button4, FALSE, TRUE, 0);
<a name="l00664"></a>00664
<a name="l00665"></a>00665 image8 = gtk_image_new_from_stock (<span class="stringliteral">"gtk-add"</span>, GTK_ICON_SIZE_BUTTON);
<a name="l00666"></a>00666 gtk_container_add (GTK_CONTAINER (button4), image8);
<a name="l00667"></a>00667
<a name="l00668"></a>00668 button5 = gtk_button_new ();
<a name="l00669"></a>00669 gtk_box_pack_start (GTK_BOX (hbox1), button5, FALSE, TRUE, 0);
<a name="l00670"></a>00670
<a name="l00671"></a>00671 image9 = gtk_image_new_from_stock (<span class="stringliteral">"gtk-go-down"</span>, GTK_ICON_SIZE_BUTTON);
<a name="l00672"></a>00672 gtk_container_add (GTK_CONTAINER (button5), image9);
<a name="l00673"></a>00673
<a name="l00674"></a>00674 button6 = gtk_button_new ();
<a name="l00675"></a>00675 gtk_box_pack_start (GTK_BOX (hbox1), button6, FALSE, TRUE, 0);
<a name="l00676"></a>00676
<a name="l00677"></a>00677 image10 = gtk_image_new_from_stock (<span class="stringliteral">"gtk-go-up"</span>, GTK_ICON_SIZE_BUTTON);
<a name="l00678"></a>00678 gtk_container_add (GTK_CONTAINER (button6), image10);
<a name="l00679"></a>00679
<a name="l00680"></a>00680 button7 = gtk_button_new ();
<a name="l00681"></a>00681 gtk_box_pack_start (GTK_BOX (hbox1), button7, FALSE, TRUE, 0);
<a name="l00682"></a>00682
<a name="l00683"></a>00683 image11 = gtk_image_new_from_stock (<span class="stringliteral">"gtk-remove"</span>, GTK_ICON_SIZE_BUTTON);
<a name="l00684"></a>00684 gtk_container_add (GTK_CONTAINER (button7), image11);
<a name="l00685"></a>00685
<a name="l00686"></a>00686 Layer_label = gtk_label_new (_(<span class="stringliteral">"Layers"</span>));
<a name="l00687"></a>00687 gtk_notebook_set_tab_label (GTK_NOTEBOOK (sidepane_notebook),
<a name="l00688"></a>00688 gtk_notebook_get_nth_page (GTK_NOTEBOOK (sidepane_notebook), 0),
<a name="l00689"></a>00689 Layer_label);
<a name="l00690"></a>00690
<a name="l00691"></a>00691 vbox11 = gtk_vbox_new (FALSE, 2);
<a name="l00692"></a>00692 gtk_container_add (GTK_CONTAINER (sidepane_notebook), vbox11);
<a name="l00693"></a>00693 gtk_container_set_border_width (GTK_CONTAINER (vbox11), 3);
<a name="l00694"></a>00694
<a name="l00695"></a>00695 messages_scrolledwindow = gtk_scrolled_window_new (NULL, NULL);
<a name="l00696"></a>00696 gtk_box_pack_start (GTK_BOX (vbox11), messages_scrolledwindow, TRUE, TRUE, 0);
<a name="l00697"></a>00697 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (messages_scrolledwindow),
<a name="l00698"></a>00698 GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
<a name="l00699"></a>00699
<a name="l00700"></a>00700 message_textview = gtk_text_view_new ();
<a name="l00701"></a>00701 gtk_container_add (GTK_CONTAINER (messages_scrolledwindow), message_textview);
<a name="l00702"></a>00702 gtk_text_view_set_editable (GTK_TEXT_VIEW (message_textview), FALSE);
<a name="l00703"></a>00703 gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (message_textview), GTK_WRAP_WORD);
<a name="l00704"></a>00704 gtk_text_view_set_cursor_visible (GTK_TEXT_VIEW (message_textview), FALSE);
<a name="l00705"></a>00705
<a name="l00706"></a>00706 clear_messages_button = gtk_button_new_from_stock (<span class="stringliteral">"gtk-clear"</span>);
<a name="l00707"></a>00707 gtk_box_pack_start (GTK_BOX (vbox11), clear_messages_button, FALSE, FALSE, 0);
<a name="l00708"></a>00708
<a name="l00709"></a>00709 Message_label = gtk_label_new (_(<span class="stringliteral">"Messages"</span>));
<a name="l00710"></a>00710 gtk_notebook_set_tab_label (GTK_NOTEBOOK (sidepane_notebook),
<a name="l00711"></a>00711 gtk_notebook_get_nth_page (GTK_NOTEBOOK (sidepane_notebook), 1),
<a name="l00712"></a>00712 Message_label);
<a name="l00713"></a>00713
<a name="l00714"></a>00714 vbox2 = gtk_vbox_new (FALSE, 4);
<a name="l00715"></a>00715 gtk_paned_pack2 (GTK_PANED (hpaned1), vbox2, TRUE, FALSE);
<a name="l00716"></a>00716 gtk_container_set_border_width (GTK_CONTAINER (vbox2), 4);
<a name="l00717"></a>00717
<a name="l00718"></a>00718 main_view_table = gtk_table_new (3, 3, FALSE);
<a name="l00719"></a>00719 gtk_box_pack_start (GTK_BOX (vbox2), main_view_table, TRUE, TRUE, 0);
<a name="l00720"></a>00720
<a name="l00721"></a>00721 hRuler = gtk_hruler_new ();
<a name="l00722"></a>00722 gtk_table_attach (GTK_TABLE (main_view_table), hRuler, 1, 2, 0, 1,
<a name="l00723"></a>00723 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
<a name="l00724"></a>00724 (GtkAttachOptions) (GTK_FILL), 0, 0);
<a name="l00725"></a>00725 gtk_ruler_set_range (GTK_RULER (hRuler), 0, 100, 8.56051, 1000);
<a name="l00726"></a>00726
<a name="l00727"></a>00727 vRuler = gtk_vruler_new ();
<a name="l00728"></a>00728 gtk_table_attach (GTK_TABLE (main_view_table), vRuler, 0, 1, 1, 2,
<a name="l00729"></a>00729 (GtkAttachOptions) (GTK_FILL),
<a name="l00730"></a>00730 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0);
<a name="l00731"></a>00731 gtk_ruler_set_range (GTK_RULER (vRuler), 0, 100, 8.37341, 1000);
<a name="l00732"></a>00732
<a name="l00733"></a>00733 drawingarea = gtk_drawing_area_new();
<a name="l00734"></a>00734 gtk_table_attach (GTK_TABLE (main_view_table), drawingarea, 1, 2, 1, 2,
<a name="l00735"></a>00735 (GtkAttachOptions) (GTK_FILL),
<a name="l00736"></a>00736 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0);
<a name="l00737"></a>00737
<a name="l00738"></a>00738 hAdjustment = (GtkWidget *) gtk_adjustment_new (0.0, -1000.0, 1000.0, 1000.0, 1000.0, 500.0);
<a name="l00739"></a>00739 vAdjustment = (GtkWidget *) gtk_adjustment_new (0.0, -1000.0, 1000.0, 1000.0, 1000.0, 500.0);
<a name="l00740"></a>00740
<a name="l00741"></a>00741 hScrollbar = gtk_hscrollbar_new (GTK_ADJUSTMENT (hAdjustment));
<a name="l00742"></a>00742 gtk_table_attach (GTK_TABLE (main_view_table), hScrollbar, 1, 2, 2, 3,
<a name="l00743"></a>00743 (GtkAttachOptions) (GTK_FILL),
<a name="l00744"></a>00744 (GtkAttachOptions) (GTK_FILL), 0, 0);
<a name="l00745"></a>00745
<a name="l00746"></a>00746 vScrollbar = gtk_vscrollbar_new (GTK_ADJUSTMENT (vAdjustment));
<a name="l00747"></a>00747 gtk_table_attach (GTK_TABLE (main_view_table), vScrollbar, 2, 3, 1, 2,
<a name="l00748"></a>00748 (GtkAttachOptions) (GTK_FILL),
<a name="l00749"></a>00749 (GtkAttachOptions) (GTK_FILL), 0, 0);
<a name="l00750"></a>00750
<a name="l00751"></a>00751 GtkWidget *frame1 = gtk_frame_new (NULL);
<a name="l00752"></a>00752 gtk_box_pack_start (GTK_BOX (vbox2), frame1, FALSE, FALSE, 0);
<a name="l00753"></a>00753
<a name="l00754"></a>00754 hbox5 = gtk_hbox_new (FALSE, 10);
<a name="l00755"></a>00755 gtk_container_add (GTK_CONTAINER(frame1), hbox5);
<a name="l00756"></a>00756
<a name="l00757"></a>00757 statusbar_label_left = gtk_label_new (_(<span class="stringliteral">"( 0.0, 0.0 )"</span>));
<a name="l00758"></a>00758 gtk_box_pack_start (GTK_BOX (hbox5), statusbar_label_left, FALSE, FALSE, 0);
<a name="l00759"></a>00759 gtk_widget_set_size_request (statusbar_label_left, 130, -1);
<a name="l00760"></a>00760 gtk_label_set_justify ((GtkLabel *) statusbar_label_left, GTK_JUSTIFY_RIGHT);
<a name="l00761"></a>00761
<a name="l00762"></a>00762 combobox2 = gtk_combo_box_new_text ();
<a name="l00763"></a>00763 gtk_box_pack_start (GTK_BOX (hbox5), combobox2, FALSE, FALSE, 0);
<a name="l00764"></a>00764 gtk_combo_box_append_text (GTK_COMBO_BOX (combobox2), _(<span class="stringliteral">"mil"</span>));
<a name="l00765"></a>00765 gtk_combo_box_append_text (GTK_COMBO_BOX (combobox2), _(<span class="stringliteral">"mm"</span>));
<a name="l00766"></a>00766 gtk_combo_box_append_text (GTK_COMBO_BOX (combobox2), _(<span class="stringliteral">"in"</span>));
<a name="l00767"></a>00767
<a name="l00768"></a>00768 statusbar_label_right = gtk_label_new (_(<span class="stringliteral">""</span>));
<a name="l00769"></a>00769 gtk_box_pack_start (GTK_BOX (hbox5), statusbar_label_right, TRUE, TRUE, 0);
<a name="l00770"></a>00770 gtk_label_set_ellipsize ((GtkLabel *)statusbar_label_right, PANGO_ELLIPSIZE_END);
<a name="l00771"></a>00771 gtk_misc_set_alignment (GTK_MISC (statusbar_label_right), 0, 0.5);
<a name="l00772"></a>00772
<a name="l00773"></a>00773
<a name="l00774"></a>00774
<a name="l00775"></a>00775 <span class="comment">/*</span>
<a name="l00776"></a>00776 <span class="comment"> * Connect signals to widgets</span>
<a name="l00777"></a>00777 <span class="comment"> */</span>
<a name="l00778"></a>00778
<a name="l00779"></a>00779 <span class="comment">/* --- File menu --- */</span>
<a name="l00780"></a>00780 g_signal_connect ((gpointer) <span class="keyword">new</span>, <span class="stringliteral">"activate"</span>,
<a name="l00781"></a>00781 G_CALLBACK (<a class="code" href="callbacks_8c.html#f1f3e9d292f08934fb93c49ec4754bff" title="The file -&amp;gt; new menu item was selected.">callbacks_new_activate</a>),
<a name="l00782"></a>00782 NULL);
<a name="l00783"></a>00783 g_signal_connect ((gpointer) open_project, <span class="stringliteral">"activate"</span>,
<a name="l00784"></a>00784 G_CALLBACK (<a class="code" href="callbacks_8c.html#76354634efb51383adff640cf3973ac5" title="The file -&amp;gt; open menu item was selected.">callbacks_open_project_activate</a>),
<a name="l00785"></a>00785 NULL);
<a name="l00786"></a>00786 g_signal_connect ((gpointer) open_layer, <span class="stringliteral">"activate"</span>,
<a name="l00787"></a>00787 G_CALLBACK (<a class="code" href="callbacks_8c.html#adae223871112a391a192e70f0290032" title="The file -&amp;gt; open layer menu item was selected.">callbacks_open_layer_activate</a>),
<a name="l00788"></a>00788 NULL);
<a name="l00789"></a>00789 g_signal_connect ((gpointer) revert, <span class="stringliteral">"activate"</span>,
<a name="l00790"></a>00790 G_CALLBACK (callbacks_revert_activate),
<a name="l00791"></a>00791 NULL);
<a name="l00792"></a>00792 g_signal_connect ((gpointer) save_layer, <span class="stringliteral">"activate"</span>,
<a name="l00793"></a>00793 G_CALLBACK (callbacks_save_layer_activate),
<a name="l00794"></a>00794 NULL);
<a name="l00795"></a>00795 g_signal_connect ((gpointer) save_as_layer, <span class="stringliteral">"activate"</span>,
<a name="l00796"></a>00796 G_CALLBACK (callbacks_generic_save_activate),
<a name="l00797"></a>00797 (gpointer) CALLBACKS_SAVE_LAYER_AS);
<a name="l00798"></a>00798 g_signal_connect ((gpointer) save, <span class="stringliteral">"activate"</span>,
<a name="l00799"></a>00799 G_CALLBACK (callbacks_save_project_activate),
<a name="l00800"></a>00800 NULL);
<a name="l00801"></a>00801 g_signal_connect ((gpointer) save_as, <span class="stringliteral">"activate"</span>,
<a name="l00802"></a>00802 G_CALLBACK (callbacks_generic_save_activate),
<a name="l00803"></a>00803 (gpointer) CALLBACKS_SAVE_PROJECT_AS);
<a name="l00804"></a>00804 <span class="preprocessor">#ifdef EXPORT_PNG</span>
<a name="l00805"></a>00805 <span class="preprocessor"></span> g_signal_connect ((gpointer) png, <span class="stringliteral">"activate"</span>,
<a name="l00806"></a>00806 G_CALLBACK (callbacks_generic_save_activate),
<a name="l00807"></a>00807 (gpointer) CALLBACKS_SAVE_FILE_PNG);
<a name="l00808"></a>00808 <span class="preprocessor">#endif</span>
<a name="l00809"></a>00809 <span class="preprocessor"></span>
<a name="l00810"></a>00810 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00811"></a>00811 <span class="preprocessor"></span> g_signal_connect ((gpointer) pdf, <span class="stringliteral">"activate"</span>,
<a name="l00812"></a>00812 G_CALLBACK (callbacks_generic_save_activate),
<a name="l00813"></a>00813 (gpointer) CALLBACKS_SAVE_FILE_PDF);
<a name="l00814"></a>00814 g_signal_connect ((gpointer) svg, <span class="stringliteral">"activate"</span>,
<a name="l00815"></a>00815 G_CALLBACK (callbacks_generic_save_activate),
<a name="l00816"></a>00816 (gpointer) CALLBACKS_SAVE_FILE_SVG);
<a name="l00817"></a>00817 g_signal_connect ((gpointer) postscript, <span class="stringliteral">"activate"</span>,
<a name="l00818"></a>00818 G_CALLBACK (callbacks_generic_save_activate),
<a name="l00819"></a>00819 (gpointer) CALLBACKS_SAVE_FILE_PS);
<a name="l00820"></a>00820 g_signal_connect ((gpointer) rs274x, <span class="stringliteral">"activate"</span>,
<a name="l00821"></a>00821 G_CALLBACK (callbacks_generic_save_activate),
<a name="l00822"></a>00822 (gpointer) CALLBACKS_SAVE_FILE_RS274X);
<a name="l00823"></a>00823 g_signal_connect ((gpointer) drill, <span class="stringliteral">"activate"</span>,
<a name="l00824"></a>00824 G_CALLBACK (callbacks_generic_save_activate),
<a name="l00825"></a>00825 (gpointer) CALLBACKS_SAVE_FILE_DRILL);
<a name="l00826"></a>00826
<a name="l00827"></a>00827 <span class="preprocessor">#if GTK_CHECK_VERSION(2,10,0)</span>
<a name="l00828"></a>00828 <span class="preprocessor"></span> g_signal_connect ((gpointer) print, <span class="stringliteral">"activate"</span>,
<a name="l00829"></a>00829 G_CALLBACK (callbacks_print_activate),
<a name="l00830"></a>00830 NULL);
<a name="l00831"></a>00831 <span class="preprocessor">#endif</span>
<a name="l00832"></a>00832 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00833"></a>00833 <span class="preprocessor"></span> g_signal_connect ((gpointer) quit, <span class="stringliteral">"activate"</span>,
<a name="l00834"></a>00834 G_CALLBACK (<a class="code" href="callbacks_8c.html#d8040c1a285e7bd4c69c32a9a0508ea6" title="The file -&amp;gt; quit menu item was selected.">callbacks_quit_activate</a>),
<a name="l00835"></a>00835 NULL);
<a name="l00836"></a>00836
<a name="l00837"></a>00837 <span class="comment">/* --- Edit menu --- */</span>
<a name="l00838"></a>00838 g_signal_connect ((gpointer) delete_selected, <span class="stringliteral">"activate"</span>,
<a name="l00839"></a>00839 G_CALLBACK (callbacks_delete_objects_clicked),
<a name="l00840"></a>00840 NULL);
<a name="l00841"></a>00841
<a name="l00842"></a>00842 <span class="comment">/* --- View menu --- */</span>
<a name="l00843"></a>00843 g_signal_connect ((gpointer) zoom_in, <span class="stringliteral">"activate"</span>,
<a name="l00844"></a>00844 G_CALLBACK (callbacks_zoom_in_activate),
<a name="l00845"></a>00845 NULL);
<a name="l00846"></a>00846 g_signal_connect ((gpointer) zoom_out, <span class="stringliteral">"activate"</span>,
<a name="l00847"></a>00847 G_CALLBACK (callbacks_zoom_out_activate),
<a name="l00848"></a>00848 NULL);
<a name="l00849"></a>00849 g_signal_connect ((gpointer) fit_to_window, <span class="stringliteral">"activate"</span>,
<a name="l00850"></a>00850 G_CALLBACK (callbacks_fit_to_window_activate),
<a name="l00851"></a>00851 NULL);
<a name="l00852"></a>00852
<a name="l00853"></a>00853 <span class="comment">/* --- Analyze menu --- */</span>
<a name="l00854"></a>00854 g_signal_connect ((gpointer) analyze_active_gerbers, <span class="stringliteral">"activate"</span>,
<a name="l00855"></a>00855 G_CALLBACK (<a class="code" href="callbacks_8c.html#c606a4181ce091ad91f1fa924e3d0160" title="The analyze -&amp;gt; analyze Gerbers menu item was selected.">callbacks_analyze_active_gerbers_activate</a>),
<a name="l00856"></a>00856 NULL);
<a name="l00857"></a>00857 g_signal_connect ((gpointer) analyze_active_drill, <span class="stringliteral">"activate"</span>,
<a name="l00858"></a>00858 G_CALLBACK (<a class="code" href="callbacks_8c.html#9afbe23b9e32d3d6fdc4302cf4ff3636" title="The analyze -&amp;gt; analyze drill file menu item was selected.">callbacks_analyze_active_drill_activate</a>),
<a name="l00859"></a>00859 NULL);
<a name="l00860"></a>00860 g_signal_connect ((gpointer) analyze_display_selected_obj_props, <span class="stringliteral">"activate"</span>,
<a name="l00861"></a>00861 G_CALLBACK (callbacks_display_object_properties_clicked),
<a name="l00862"></a>00862 NULL);
<a name="l00863"></a>00863
<a name="l00864"></a>00864
<a name="l00865"></a>00865 <span class="comment">/* Wait for 2.1</span>
<a name="l00866"></a>00866 <span class="comment"> g_signal_connect ((gpointer) control_gerber_options, "activate",</span>
<a name="l00867"></a>00867 <span class="comment"> G_CALLBACK (callbacks_control_gerber_options_activate),</span>
<a name="l00868"></a>00868 <span class="comment"> NULL);</span>
<a name="l00869"></a>00869 <span class="comment"> */</span>
<a name="l00870"></a>00870
<a name="l00871"></a>00871 <span class="comment">/* --- Tools menu --- */</span>
<a name="l00872"></a>00872 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00873"></a>00873 <span class="preprocessor"></span> g_signal_connect ((gpointer) pointer_tool, <span class="stringliteral">"activate"</span>,
<a name="l00874"></a>00874 G_CALLBACK (callbacks_change_tool), (gpointer) 0);
<a name="l00875"></a>00875 <span class="preprocessor">#endif</span>
<a name="l00876"></a>00876 <span class="preprocessor"></span> g_signal_connect ((gpointer) pan_tool, <span class="stringliteral">"activate"</span>,
<a name="l00877"></a>00877 G_CALLBACK (callbacks_change_tool), (gpointer) 1);
<a name="l00878"></a>00878 g_signal_connect ((gpointer) zoom_tool, <span class="stringliteral">"activate"</span>,
<a name="l00879"></a>00879 G_CALLBACK (callbacks_change_tool), (gpointer) 2);
<a name="l00880"></a>00880 g_signal_connect ((gpointer) measure_tool, <span class="stringliteral">"activate"</span>,
<a name="l00881"></a>00881 G_CALLBACK (callbacks_change_tool), (gpointer) 3);
<a name="l00882"></a>00882
<a name="l00883"></a>00883 <span class="comment">/* --- Help menu --- */</span>
<a name="l00884"></a>00884 <span class="comment">/*</span>
<a name="l00885"></a>00885 <span class="comment"> g_signal_connect ((gpointer) online_manual, "activate",</span>
<a name="l00886"></a>00886 <span class="comment"> G_CALLBACK (callbacks_online_manual_activate),</span>
<a name="l00887"></a>00887 <span class="comment"> NULL);</span>
<a name="l00888"></a>00888 <span class="comment"> */</span>
<a name="l00889"></a>00889 g_signal_connect ((gpointer) about, <span class="stringliteral">"activate"</span>,
<a name="l00890"></a>00890 G_CALLBACK (<a class="code" href="callbacks_8c.html#e78557c80cd21bfb2267a67a7731aed3" title="The help -&amp;gt; about menu item was selected.">callbacks_about_activate</a>),
<a name="l00891"></a>00891 NULL);
<a name="l00892"></a>00892
<a name="l00893"></a>00893 <span class="comment">/* End of Glade generated code */</span>
<a name="l00894"></a>00894 g_signal_connect ((gpointer) toolbutton_new, <span class="stringliteral">"clicked"</span>,
<a name="l00895"></a>00895 G_CALLBACK (<a class="code" href="callbacks_8c.html#f1f3e9d292f08934fb93c49ec4754bff" title="The file -&amp;gt; new menu item was selected.">callbacks_new_activate</a>),
<a name="l00896"></a>00896 NULL);
<a name="l00897"></a>00897 g_signal_connect ((gpointer) toolbutton_save, <span class="stringliteral">"clicked"</span>,
<a name="l00898"></a>00898 G_CALLBACK (callbacks_save_layer_activate),
<a name="l00899"></a>00899 NULL);
<a name="l00900"></a>00900 g_signal_connect ((gpointer) toolbutton_open, <span class="stringliteral">"clicked"</span>,
<a name="l00901"></a>00901 G_CALLBACK (<a class="code" href="callbacks_8c.html#adae223871112a391a192e70f0290032" title="The file -&amp;gt; open layer menu item was selected.">callbacks_open_layer_activate</a>),
<a name="l00902"></a>00902 NULL);
<a name="l00903"></a>00903 g_signal_connect ((gpointer) toolbutton_revert, <span class="stringliteral">"clicked"</span>,
<a name="l00904"></a>00904 G_CALLBACK (callbacks_revert_activate),
<a name="l00905"></a>00905 NULL);
<a name="l00906"></a>00906 g_signal_connect ((gpointer) clear_messages_button, <span class="stringliteral">"clicked"</span>,
<a name="l00907"></a>00907 G_CALLBACK (callbacks_clear_messages_button_clicked),
<a name="l00908"></a>00908 NULL);
<a name="l00909"></a>00909 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00910"></a>00910 <span class="preprocessor"></span><span class="preprocessor">#if GTK_CHECK_VERSION(2,10,0)</span>
<a name="l00911"></a>00911 <span class="preprocessor"></span> g_signal_connect ((gpointer) toolbutton_print, <span class="stringliteral">"clicked"</span>,
<a name="l00912"></a>00912 G_CALLBACK (callbacks_print_activate),
<a name="l00913"></a>00913 NULL);
<a name="l00914"></a>00914 <span class="preprocessor">#endif</span>
<a name="l00915"></a>00915 <span class="preprocessor"></span><span class="preprocessor">#endif</span>
<a name="l00916"></a>00916 <span class="preprocessor"></span> g_signal_connect ((gpointer) toolbutton_zoom_in, <span class="stringliteral">"clicked"</span>,
<a name="l00917"></a>00917 G_CALLBACK (callbacks_zoom_in_activate),
<a name="l00918"></a>00918 NULL);
<a name="l00919"></a>00919 g_signal_connect ((gpointer) toolbutton_zoom_out, <span class="stringliteral">"clicked"</span>,
<a name="l00920"></a>00920 G_CALLBACK (callbacks_zoom_out_activate),
<a name="l00921"></a>00921 NULL);
<a name="l00922"></a>00922 g_signal_connect ((gpointer) toolbutton_zoom_fit, <span class="stringliteral">"clicked"</span>,
<a name="l00923"></a>00923 G_CALLBACK (callbacks_fit_to_window_activate),
<a name="l00924"></a>00924 NULL);
<a name="l00925"></a>00925 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l00926"></a>00926 <span class="preprocessor"></span> g_signal_connect ((gpointer) toggletoolbutton_pointer, <span class="stringliteral">"clicked"</span>,
<a name="l00927"></a>00927 G_CALLBACK (callbacks_change_tool), (gpointer) 0);
<a name="l00928"></a>00928 <span class="preprocessor">#endif</span>
<a name="l00929"></a>00929 <span class="preprocessor"></span> g_signal_connect ((gpointer) toggletoolbutton_pan, <span class="stringliteral">"clicked"</span>,
<a name="l00930"></a>00930 G_CALLBACK (callbacks_change_tool), (gpointer) 1);
<a name="l00931"></a>00931 g_signal_connect ((gpointer) toggletoolbutton_zoom, <span class="stringliteral">"clicked"</span>,
<a name="l00932"></a>00932 G_CALLBACK (callbacks_change_tool), (gpointer) 2);
<a name="l00933"></a>00933 g_signal_connect ((gpointer) toggletoolbutton_measure, <span class="stringliteral">"clicked"</span>,
<a name="l00934"></a>00934 G_CALLBACK (callbacks_change_tool), (gpointer) 3);
<a name="l00935"></a>00935
<a name="l00936"></a>00936 g_signal_connect ((gpointer) combobox2, <span class="stringliteral">"changed"</span>,
<a name="l00937"></a>00937 G_CALLBACK (callbacks_statusbar_unit_combo_box_changed),
<a name="l00938"></a>00938 NULL);
<a name="l00939"></a>00939
<a name="l00940"></a>00940 g_signal_connect ((gpointer) button4, <span class="stringliteral">"clicked"</span>,
<a name="l00941"></a>00941 G_CALLBACK (callbacks_add_layer_button_clicked), NULL);
<a name="l00942"></a>00942 g_signal_connect ((gpointer) button7, <span class="stringliteral">"clicked"</span>,
<a name="l00943"></a>00943 G_CALLBACK (callbacks_remove_layer_button_clicked), NULL);
<a name="l00944"></a>00944 g_signal_connect ((gpointer) button5, <span class="stringliteral">"clicked"</span>,
<a name="l00945"></a>00945 G_CALLBACK (callbacks_move_layer_down_button_clicked), NULL);
<a name="l00946"></a>00946 g_signal_connect ((gpointer) button6, <span class="stringliteral">"clicked"</span>,
<a name="l00947"></a>00947 G_CALLBACK (callbacks_move_layer_up_clicked), NULL);
<a name="l00948"></a>00948
<a name="l00949"></a>00949 g_signal_connect ((gpointer) hAdjustment, <span class="stringliteral">"value-changed"</span>,
<a name="l00950"></a>00950 G_CALLBACK (callbacks_hadjustment_value_changed), NULL);
<a name="l00951"></a>00951 g_signal_connect ((gpointer) vAdjustment, <span class="stringliteral">"value-changed"</span>,
<a name="l00952"></a>00952 G_CALLBACK (callbacks_vadjustment_value_changed), NULL);
<a name="l00953"></a>00953 g_signal_connect ((gpointer) hScrollbar, <span class="stringliteral">"button-press-event"</span>,
<a name="l00954"></a>00954 G_CALLBACK (callbacks_scrollbar_button_pressed), NULL);
<a name="l00955"></a>00955 g_signal_connect ((gpointer) hScrollbar, <span class="stringliteral">"button-release-event"</span>,
<a name="l00956"></a>00956 G_CALLBACK (callbacks_scrollbar_button_released), NULL);
<a name="l00957"></a>00957 g_signal_connect ((gpointer) vScrollbar, <span class="stringliteral">"button-press-event"</span>,
<a name="l00958"></a>00958 G_CALLBACK (callbacks_scrollbar_button_pressed), NULL);
<a name="l00959"></a>00959 g_signal_connect ((gpointer) vScrollbar, <span class="stringliteral">"button-release-event"</span>,
<a name="l00960"></a>00960 G_CALLBACK (callbacks_scrollbar_button_released), NULL);
<a name="l00961"></a>00961
<a name="l00962"></a>00962
<a name="l00963"></a>00963 <span class="keywordflow">if</span> (<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.unit == GERBV_MILS)
<a name="l00964"></a>00964 gtk_combo_box_set_active (GTK_COMBO_BOX (combobox2), 0);
<a name="l00965"></a>00965 <span class="keywordflow">else</span> <span class="keywordflow">if</span> (<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.unit == GERBV_MMS)
<a name="l00966"></a>00966 gtk_combo_box_set_active (GTK_COMBO_BOX (combobox2), 1);
<a name="l00967"></a>00967 <span class="keywordflow">else</span>
<a name="l00968"></a>00968 gtk_combo_box_set_active (GTK_COMBO_BOX (combobox2), 2);
<a name="l00969"></a>00969
<a name="l00970"></a>00970 gint width, height;
<a name="l00971"></a>00971
<a name="l00972"></a>00972 gtk_window_add_accel_group (GTK_WINDOW (mainWindow), accel_group);
<a name="l00973"></a>00973
<a name="l00974"></a>00974 GtkListStore *list_store;
<a name="l00975"></a>00975
<a name="l00976"></a>00976 list_store = gtk_list_store_new (4, G_TYPE_BOOLEAN,
<a name="l00977"></a>00977 GDK_TYPE_PIXBUF, G_TYPE_STRING, G_TYPE_STRING);
<a name="l00978"></a>00978
<a name="l00979"></a>00979 GtkWidget *tree;
<a name="l00980"></a>00980
<a name="l00981"></a>00981 tree = gtk_tree_view_new_with_model (GTK_TREE_MODEL (list_store));
<a name="l00982"></a>00982 GtkCellRenderer *renderer;
<a name="l00983"></a>00983 GtkTreeViewColumn *column;
<a name="l00984"></a>00984
<a name="l00985"></a>00985 renderer = gtk_cell_renderer_toggle_new ();
<a name="l00986"></a>00986 column = gtk_tree_view_column_new_with_attributes (<span class="stringliteral">"Visible"</span>,
<a name="l00987"></a>00987 renderer,
<a name="l00988"></a>00988 <span class="stringliteral">"active"</span>, 0,
<a name="l00989"></a>00989 NULL);
<a name="l00990"></a>00990 gtk_tree_view_column_set_min_width ((GtkTreeViewColumn *)column,25);
<a name="l00991"></a>00991 gtk_signal_connect(GTK_OBJECT(renderer), <span class="stringliteral">"toggled"</span>,
<a name="l00992"></a>00992 GTK_SIGNAL_FUNC(callbacks_layer_tree_visibility_button_toggled), NULL);
<a name="l00993"></a>00993
<a name="l00994"></a>00994 gtk_tree_view_append_column (GTK_TREE_VIEW (tree), column);
<a name="l00995"></a>00995
<a name="l00996"></a>00996 renderer = gtk_cell_renderer_pixbuf_new ();
<a name="l00997"></a>00997 column = gtk_tree_view_column_new_with_attributes (<span class="stringliteral">"Color"</span>,
<a name="l00998"></a>00998 renderer,
<a name="l00999"></a>00999 <span class="stringliteral">"pixbuf"</span>, 1, NULL);
<a name="l01000"></a>01000 gtk_tree_view_append_column (GTK_TREE_VIEW (tree), column);
<a name="l01001"></a>01001
<a name="l01002"></a>01002 renderer = gtk_cell_renderer_text_new ();
<a name="l01003"></a>01003 g_object_set (G_OBJECT (renderer), <span class="stringliteral">"foreground"</span>, <span class="stringliteral">"red"</span>, <span class="stringliteral">"xalign"</span>, 0.5,
<a name="l01004"></a>01004 <span class="stringliteral">"family"</span>, <span class="stringliteral">"Times"</span>, <span class="stringliteral">"size-points"</span>, 12.0, NULL);
<a name="l01005"></a>01005 column = gtk_tree_view_column_new_with_attributes (<span class="stringliteral">"Modified"</span>,
<a name="l01006"></a>01006 renderer,
<a name="l01007"></a>01007 <span class="stringliteral">"text"</span>, 3,
<a name="l01008"></a>01008 NULL);
<a name="l01009"></a>01009 gtk_tree_view_append_column (GTK_TREE_VIEW (tree), column);
<a name="l01010"></a>01010 gtk_tree_view_column_set_min_width ((GtkTreeViewColumn *)column,20);
<a name="l01011"></a>01011
<a name="l01012"></a>01012 renderer = gtk_cell_renderer_text_new ();
<a name="l01013"></a>01013 column = gtk_tree_view_column_new_with_attributes (<span class="stringliteral">"Name"</span>,
<a name="l01014"></a>01014 renderer,
<a name="l01015"></a>01015 <span class="stringliteral">"markup"</span>, 2,
<a name="l01016"></a>01016 NULL);
<a name="l01017"></a>01017 gtk_tree_view_append_column (GTK_TREE_VIEW (tree), column);
<a name="l01018"></a>01018
<a name="l01019"></a>01019 gtk_tree_view_set_headers_visible ((GtkTreeView *)tree, FALSE);
<a name="l01020"></a>01020 gtk_signal_connect(GTK_OBJECT(tree), <span class="stringliteral">"button-press-event"</span>,
<a name="l01021"></a>01021 GTK_SIGNAL_FUNC(callbacks_layer_tree_button_press), NULL);
<a name="l01022"></a>01022 gtk_container_add (GTK_CONTAINER (scrolledwindow1), tree);
<a name="l01023"></a>01023
<a name="l01024"></a>01024 GtkTreeSelection *selection;
<a name="l01025"></a>01025 selection = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree));
<a name="l01026"></a>01026 gtk_tree_selection_set_mode (selection, GTK_SELECTION_BROWSE);
<a name="l01027"></a>01027 gtk_tree_view_set_enable_search (GTK_TREE_VIEW (tree), FALSE);
<a name="l01028"></a>01028 gtk_tree_view_set_reorderable (GTK_TREE_VIEW (tree), TRUE);
<a name="l01029"></a>01029
<a name="l01030"></a>01030 g_signal_connect (G_OBJECT(list_store), <span class="stringliteral">"row-inserted"</span>,
<a name="l01031"></a>01031 G_CALLBACK (callbacks_layer_tree_row_inserted), NULL);
<a name="l01032"></a>01032 <span class="comment">/* steal the focus to the tree to make sure none of the buttons are focused */</span>
<a name="l01033"></a>01033 gtk_widget_grab_focus (tree);
<a name="l01034"></a>01034 <span class="comment">/*</span>
<a name="l01035"></a>01035 <span class="comment"> * Connect all events on drawing area </span>
<a name="l01036"></a>01036 <span class="comment"> */</span>
<a name="l01037"></a>01037 gtk_signal_connect(GTK_OBJECT(drawingarea), <span class="stringliteral">"expose_event"</span>,
<a name="l01038"></a>01038 GTK_SIGNAL_FUNC(callbacks_drawingarea_expose_event), NULL);
<a name="l01039"></a>01039 gtk_signal_connect(GTK_OBJECT(drawingarea),<span class="stringliteral">"configure_event"</span>,
<a name="l01040"></a>01040 GTK_SIGNAL_FUNC(callbacks_drawingarea_configure_event), NULL);
<a name="l01041"></a>01041 gtk_signal_connect(GTK_OBJECT(drawingarea), <span class="stringliteral">"motion_notify_event"</span>,
<a name="l01042"></a>01042 GTK_SIGNAL_FUNC(callbacks_drawingarea_motion_notify_event), NULL);
<a name="l01043"></a>01043 gtk_signal_connect(GTK_OBJECT(drawingarea), <span class="stringliteral">"button_press_event"</span>,
<a name="l01044"></a>01044 GTK_SIGNAL_FUNC(callbacks_drawingarea_button_press_event), NULL);
<a name="l01045"></a>01045 gtk_signal_connect(GTK_OBJECT(drawingarea), <span class="stringliteral">"button_release_event"</span>,
<a name="l01046"></a>01046 GTK_SIGNAL_FUNC(callbacks_drawingarea_button_release_event), NULL);
<a name="l01047"></a>01047 gtk_signal_connect_after(GTK_OBJECT(mainWindow), <span class="stringliteral">"key_press_event"</span>,
<a name="l01048"></a>01048 GTK_SIGNAL_FUNC(callbacks_window_key_press_event), NULL);
<a name="l01049"></a>01049 gtk_signal_connect_after(GTK_OBJECT(mainWindow), <span class="stringliteral">"key_release_event"</span>,
<a name="l01050"></a>01050 GTK_SIGNAL_FUNC(callbacks_window_key_release_event), NULL);
<a name="l01051"></a>01051 gtk_signal_connect_after(GTK_OBJECT(mainWindow), <span class="stringliteral">"scroll_event"</span>,
<a name="l01052"></a>01052 GTK_SIGNAL_FUNC(callbacks_window_scroll_event), NULL);
<a name="l01053"></a>01053 gtk_signal_connect_after(GTK_OBJECT(mainWindow), <span class="stringliteral">"delete_event"</span>,
<a name="l01054"></a>01054 GTK_SIGNAL_FUNC(<a class="code" href="callbacks_8c.html#d8040c1a285e7bd4c69c32a9a0508ea6" title="The file -&amp;gt; quit menu item was selected.">callbacks_quit_activate</a>), NULL);
<a name="l01055"></a>01055
<a name="l01056"></a>01056 gtk_widget_set_events(drawingarea, GDK_EXPOSURE_MASK
<a name="l01057"></a>01057 | GDK_LEAVE_NOTIFY_MASK
<a name="l01058"></a>01058 | GDK_ENTER_NOTIFY_MASK
<a name="l01059"></a>01059 | GDK_BUTTON_PRESS_MASK
<a name="l01060"></a>01060 | GDK_BUTTON_RELEASE_MASK
<a name="l01061"></a>01061 | GDK_KEY_PRESS_MASK
<a name="l01062"></a>01062 | GDK_KEY_RELEASE_MASK
<a name="l01063"></a>01063 | GDK_POINTER_MOTION_MASK
<a name="l01064"></a>01064 | GDK_POINTER_MOTION_HINT_MASK
<a name="l01065"></a>01065 | GDK_SCROLL_MASK
<a name="l01066"></a>01066 );
<a name="l01067"></a>01067
<a name="l01068"></a>01068 <span class="comment">/*</span>
<a name="l01069"></a>01069 <span class="comment"> * Set gtk error log handler</span>
<a name="l01070"></a>01070 <span class="comment"> */</span>
<a name="l01071"></a>01071 <span class="preprocessor">#if !defined (__MINGW32__) </span>
<a name="l01072"></a>01072 <span class="preprocessor"></span> g_log_set_handler (NULL,
<a name="l01073"></a>01073 G_LOG_FLAG_FATAL | G_LOG_FLAG_RECURSION | G_LOG_LEVEL_MASK,
<a name="l01074"></a>01074 callbacks_handle_log_messages, NULL);
<a name="l01075"></a>01075 <span class="preprocessor">#endif </span>
<a name="l01076"></a>01076 <span class="preprocessor"></span>
<a name="l01077"></a>01077 <span class="comment">/*</span>
<a name="l01078"></a>01078 <span class="comment"> * Setup some GTK+ defaults.</span>
<a name="l01079"></a>01079 <span class="comment"> * These should really be somewhere else.</span>
<a name="l01080"></a>01080 <span class="comment"> */</span>
<a name="l01081"></a>01081 GdkColor zoom_outline_color = {0, 50000, 50000, 50000};
<a name="l01082"></a>01082 GdkColor dist_measure_color = {0, 60000, 30000, 65000};
<a name="l01083"></a>01083 GdkColor selection_color = {0, 65000, 65000, 65000};
<a name="l01084"></a>01084
<a name="l01085"></a>01085 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.zoom_outline_color = zoom_outline_color;
<a name="l01086"></a>01086 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.dist_measure_color = dist_measure_color;
<a name="l01087"></a>01087 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.selection_color = selection_color;
<a name="l01088"></a>01088
<a name="l01089"></a>01089 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.drawing_area = drawingarea;
<a name="l01090"></a>01090 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.hAdjustment = hAdjustment;
<a name="l01091"></a>01091 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.vAdjustment = vAdjustment;
<a name="l01092"></a>01092 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.hRuler = hRuler;
<a name="l01093"></a>01093 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.vRuler = vRuler;
<a name="l01094"></a>01094 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.sidepane_notebook = sidepane_notebook;
<a name="l01095"></a>01095 <span class="preprocessor">#ifndef RENDER_USING_GDK</span>
<a name="l01096"></a>01096 <span class="preprocessor"></span> <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.toolButtonPointer = toggletoolbutton_pointer;
<a name="l01097"></a>01097 <span class="preprocessor">#endif</span>
<a name="l01098"></a>01098 <span class="preprocessor"></span> <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.toolButtonPan = toggletoolbutton_pan;
<a name="l01099"></a>01099 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.toolButtonZoom = toggletoolbutton_zoom;
<a name="l01100"></a>01100 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.toolButtonMeasure = toggletoolbutton_measure;
<a name="l01101"></a>01101
<a name="l01102"></a>01102 <span class="comment">/* Create right click popup menu for layer tree */</span>
<a name="l01103"></a>01103 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu = gtk_menu_new ();
<a name="l01104"></a>01104 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Invert layer color"</span>);
<a name="l01105"></a>01105 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu, tempMenuItem);
<a name="l01106"></a>01106 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"Invert the display polarity of the layer"</span>, NULL);
<a name="l01107"></a>01107 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01108"></a>01108 G_CALLBACK (callbacks_invert_layer_clicked), NULL);
<a name="l01109"></a>01109
<a name="l01110"></a>01110 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Change color"</span>);
<a name="l01111"></a>01111 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu, tempMenuItem);
<a name="l01112"></a>01112 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"Change the display color of the layer"</span>, NULL);
<a name="l01113"></a>01113 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01114"></a>01114 G_CALLBACK (callbacks_change_layer_color_clicked), NULL);
<a name="l01115"></a>01115
<a name="l01116"></a>01116 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Reload layer"</span>);
<a name="l01117"></a>01117 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu, tempMenuItem);
<a name="l01118"></a>01118 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"Reload the layer from disk"</span>,
<a name="l01119"></a>01119 NULL);
<a name="l01120"></a>01120 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01121"></a>01121 G_CALLBACK (callbacks_reload_layer_clicked), NULL);
<a name="l01122"></a>01122
<a name="l01123"></a>01123 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Edit file format"</span>);
<a name="l01124"></a>01124 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu, tempMenuItem);
<a name="l01125"></a>01125 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"View and edit the numerical format used to parse this layer"</span>,
<a name="l01126"></a>01126 NULL);
<a name="l01127"></a>01127 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01128"></a>01128 G_CALLBACK (callbacks_change_layer_format_clicked), NULL);
<a name="l01129"></a>01129
<a name="l01130"></a>01130 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Add layer"</span>);
<a name="l01131"></a>01131 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu, tempMenuItem);
<a name="l01132"></a>01132 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"Open a new layer and insert it here"</span>, NULL);
<a name="l01133"></a>01133 tempImage = gtk_image_new_from_stock (<span class="stringliteral">"gtk-add"</span>, GTK_ICON_SIZE_MENU);
<a name="l01134"></a>01134 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (tempMenuItem), tempImage);
<a name="l01135"></a>01135 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01136"></a>01136 G_CALLBACK (callbacks_add_layer_button_clicked), NULL);
<a name="l01137"></a>01137
<a name="l01138"></a>01138 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Move layer down"</span>);
<a name="l01139"></a>01139 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu, tempMenuItem);
<a name="l01140"></a>01140 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"Move the layer down one in the layer list"</span>, NULL);
<a name="l01141"></a>01141 tempImage = gtk_image_new_from_stock (<span class="stringliteral">"gtk-go-down"</span>, GTK_ICON_SIZE_MENU);
<a name="l01142"></a>01142 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (tempMenuItem), tempImage);
<a name="l01143"></a>01143 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01144"></a>01144 G_CALLBACK (callbacks_move_layer_down_button_clicked), NULL);
<a name="l01145"></a>01145
<a name="l01146"></a>01146 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Move layer up"</span>);
<a name="l01147"></a>01147 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu, tempMenuItem);
<a name="l01148"></a>01148 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"Move the layer up one in the layer list"</span>, NULL);
<a name="l01149"></a>01149 tempImage = gtk_image_new_from_stock (<span class="stringliteral">"gtk-go-up"</span>, GTK_ICON_SIZE_MENU);
<a name="l01150"></a>01150 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (tempMenuItem), tempImage);
<a name="l01151"></a>01151 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01152"></a>01152 G_CALLBACK (callbacks_move_layer_up_clicked), NULL);
<a name="l01153"></a>01153
<a name="l01154"></a>01154 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Delete layer"</span>);
<a name="l01155"></a>01155 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu, tempMenuItem);
<a name="l01156"></a>01156 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"Remove this layer"</span>, NULL);
<a name="l01157"></a>01157 tempImage = gtk_image_new_from_stock (<span class="stringliteral">"gtk-remove"</span>, GTK_ICON_SIZE_MENU);
<a name="l01158"></a>01158 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (tempMenuItem), tempImage);
<a name="l01159"></a>01159 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01160"></a>01160 G_CALLBACK (callbacks_remove_layer_button_clicked), NULL);
<a name="l01161"></a>01161
<a name="l01162"></a>01162 gtk_widget_show_all (<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTreePopupMenu);
<a name="l01163"></a>01163
<a name="l01164"></a>01164 <span class="comment">/* Create right click popup menu for draw window */</span>
<a name="l01165"></a>01165 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.drawWindowPopupMenu = gtk_menu_new ();
<a name="l01166"></a>01166 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Display object properties"</span>);
<a name="l01167"></a>01167 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.drawWindowPopupMenu, tempMenuItem);
<a name="l01168"></a>01168 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"Examine the properties of the selected object"</span>, NULL);
<a name="l01169"></a>01169 tempImage = gtk_image_new_from_stock (<span class="stringliteral">"gtk-info"</span>, GTK_ICON_SIZE_MENU);
<a name="l01170"></a>01170 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (tempMenuItem), tempImage);
<a name="l01171"></a>01171 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01172"></a>01172 G_CALLBACK (callbacks_display_object_properties_clicked), NULL);
<a name="l01173"></a>01173
<a name="l01174"></a>01174 <span class="comment">/* Include these after they are coded.</span>
<a name="l01175"></a>01175 <span class="comment"> tempMenuItem = gtk_image_menu_item_new_with_label ("Edit object properties");</span>
<a name="l01176"></a>01176 <span class="comment"> gtk_menu_shell_append ((GtkMenuShell *)screen.win.drawWindowPopupMenu, tempMenuItem);</span>
<a name="l01177"></a>01177 <span class="comment"> gtk_tooltips_set_tip (tooltips, tempMenuItem, "Edit the properties of the selected object", NULL);</span>
<a name="l01178"></a>01178 <span class="comment"> g_signal_connect ((gpointer) tempMenuItem, "activate",</span>
<a name="l01179"></a>01179 <span class="comment"> G_CALLBACK (callbacks_edit_object_properties_clicked), NULL);</span>
<a name="l01180"></a>01180 <span class="comment"></span>
<a name="l01181"></a>01181 <span class="comment"> tempMenuItem = gtk_image_menu_item_new_with_label ("Move object(s)");</span>
<a name="l01182"></a>01182 <span class="comment"> gtk_menu_shell_append ((GtkMenuShell *)screen.win.drawWindowPopupMenu, tempMenuItem);</span>
<a name="l01183"></a>01183 <span class="comment"> gtk_tooltips_set_tip (tooltips, tempMenuItem, "Move the selected object(s)",NULL);</span>
<a name="l01184"></a>01184 <span class="comment"> g_signal_connect ((gpointer) tempMenuItem, "activate",</span>
<a name="l01185"></a>01185 <span class="comment"> G_CALLBACK (callbacks_move_objects_clicked), NULL);</span>
<a name="l01186"></a>01186 <span class="comment"> </span>
<a name="l01187"></a>01187 <span class="comment"> tempMenuItem = gtk_image_menu_item_new_with_label ("Reduce area");</span>
<a name="l01188"></a>01188 <span class="comment"> gtk_menu_shell_append ((GtkMenuShell *)screen.win.drawWindowPopupMenu, tempMenuItem);</span>
<a name="l01189"></a>01189 <span class="comment"> gtk_tooltips_set_tip (tooltips, tempMenuItem, "Reduce the area of the object (e.g. to prevent component floating)",NULL);</span>
<a name="l01190"></a>01190 <span class="comment"> g_signal_connect ((gpointer) tempMenuItem, "activate",</span>
<a name="l01191"></a>01191 <span class="comment"> G_CALLBACK (callbacks_reduce_object_area_clicked), NULL);</span>
<a name="l01192"></a>01192 <span class="comment"> */</span>
<a name="l01193"></a>01193
<a name="l01194"></a>01194 tempMenuItem = gtk_image_menu_item_new_with_label (<span class="stringliteral">"Delete selected objects"</span>);
<a name="l01195"></a>01195 gtk_menu_shell_append ((GtkMenuShell *)<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.drawWindowPopupMenu, tempMenuItem);
<a name="l01196"></a>01196 gtk_tooltips_set_tip (tooltips, tempMenuItem, <span class="stringliteral">"Delete the selected object(s)"</span>,NULL);
<a name="l01197"></a>01197 tempImage = gtk_image_new_from_stock (<span class="stringliteral">"gtk-remove"</span>, GTK_ICON_SIZE_MENU);
<a name="l01198"></a>01198 gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (tempMenuItem), tempImage);
<a name="l01199"></a>01199 g_signal_connect ((gpointer) tempMenuItem, <span class="stringliteral">"activate"</span>,
<a name="l01200"></a>01200 G_CALLBACK (callbacks_delete_objects_clicked), NULL);
<a name="l01201"></a>01201
<a name="l01202"></a>01202 gtk_widget_show_all (<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.drawWindowPopupMenu);
<a name="l01203"></a>01203
<a name="l01204"></a>01204 <span class="comment">/* make sure tooltips show on gtk &lt;2.12 systems */</span>
<a name="l01205"></a>01205 gtk_tooltips_enable (tooltips);
<a name="l01206"></a>01206 <span class="comment">/* </span>
<a name="l01207"></a>01207 <span class="comment"> * Good defaults according to Ales. Gives aspect ratio of 1.3333...</span>
<a name="l01208"></a>01208 <span class="comment"> */</span>
<a name="l01209"></a>01209 <span class="keywordflow">if</span> ((req_width != -1) &amp;&amp; (req_height != -1)) {
<a name="l01210"></a>01210 width = req_width;
<a name="l01211"></a>01211 height = req_height;
<a name="l01212"></a>01212 }
<a name="l01213"></a>01213 <span class="keywordflow">else</span> {
<a name="l01214"></a>01214 GdkScreen *<a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>;
<a name="l01215"></a>01215 <span class="keywordtype">int</span> nmonitors;
<a name="l01216"></a>01216
<a name="l01217"></a>01217 screen = gdk_screen_get_default();
<a name="l01218"></a>01218 nmonitors = gdk_screen_get_n_monitors(screen);
<a name="l01219"></a>01219
<a name="l01220"></a>01220 width = gdk_screen_get_width(screen) * 3/4 / nmonitors;
<a name="l01221"></a>01221 height = gdk_screen_get_height(screen) * 3/4 / nmonitors;
<a name="l01222"></a>01222 }
<a name="l01223"></a>01223
<a name="l01224"></a>01224 gtk_window_set_default_size((GtkWindow *)mainWindow, width, height);
<a name="l01225"></a>01225
<a name="l01226"></a>01226 gtk_widget_show_all (mainWindow);
<a name="l01227"></a>01227 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.topLevelWindow = mainWindow;
<a name="l01228"></a>01228 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.messageTextView = message_textview;
<a name="l01229"></a>01229 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.statusMessageLeft = statusbar_label_left;
<a name="l01230"></a>01230 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.statusMessageRight = statusbar_label_right;
<a name="l01231"></a>01231 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.statusUnitComboBox = combobox2;
<a name="l01232"></a>01232 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.layerTree = tree;
<a name="l01233"></a>01233 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.win.treeIsUpdating = FALSE;
<a name="l01234"></a>01234
<a name="l01235"></a>01235 <a class="code" href="callbacks_8c.html#1ec55bca5ad7868d265ee62fe10a29bc" title="Global variable to keep track of what&amp;#39;s happening on the screen.">screen</a>.selectionInfo.selectedNodeArray = g_array_new (FALSE,
<a name="l01236"></a>01236 FALSE, <span class="keyword">sizeof</span>(gerbv_selection_item_t));
<a name="l01237"></a>01237 <span class="comment">/* Make pointer tool default */</span>
<a name="l01238"></a>01238 callbacks_change_tool (NULL, (gpointer) 0);
<a name="l01239"></a>01239
<a name="l01240"></a>01240 rename_main_window(<span class="stringliteral">""</span>,mainWindow);
<a name="l01241"></a>01241
<a name="l01242"></a>01242 set_window_icon (mainWindow);
<a name="l01243"></a>01243 callbacks_update_layer_tree ();
<a name="l01244"></a>01244
<a name="l01245"></a>01245 <span class="comment">/* connect this signal as late as possible to avoid triggering it before</span>
<a name="l01246"></a>01246 <span class="comment"> the gui is drawn */</span>
<a name="l01247"></a>01247 g_signal_connect ((gpointer) render_combobox, <span class="stringliteral">"changed"</span>,
<a name="l01248"></a>01248 G_CALLBACK (callbacks_sidepane_render_type_combo_box_changed),
<a name="l01249"></a>01249 NULL);
<a name="l01250"></a>01250 gtk_main();
<a name="l01251"></a>01251 }
<a name="l01252"></a>01252
<a name="l01253"></a>01253 <span class="comment">/* ---------------------------------------------------- */</span>
<a name="l01254"></a>01254 <span class="keywordtype">void</span>
<a name="l01255"></a>01255 interface_set_render_type (<span class="keywordtype">int</span> t)
<a name="l01256"></a>01256 {
<a name="l01257"></a>01257 <span class="preprocessor">#ifdef RENDER_USING_GDK</span>
<a name="l01258"></a>01258 <span class="preprocessor"></span> <span class="keywordflow">if</span> (t &gt;= 2)
<a name="l01259"></a>01259 <span class="preprocessor">#else</span>
<a name="l01260"></a>01260 <span class="preprocessor"></span> <span class="keywordflow">if</span> (t &gt;= 4)
<a name="l01261"></a>01261 <span class="preprocessor">#endif</span>
<a name="l01262"></a>01262 <span class="preprocessor"></span> <span class="keywordflow">return</span>;
<a name="l01263"></a>01263
<a name="l01264"></a>01264 screenRenderInfo.<a class="code" href="structgerbv__render__info__t.html#902b5d841ab7a246a3ffa4fd2a6a9d26">renderType</a> = t;
<a name="l01265"></a>01265
<a name="l01266"></a>01266 <span class="comment">/* make sure the interface is already up before calling</span>
<a name="l01267"></a>01267 <span class="comment"> * gtk_combo_box_set_active()</span>
<a name="l01268"></a>01268 <span class="comment"> */</span>
<a name="l01269"></a>01269 <span class="keywordflow">if</span> (render_combobox)
<a name="l01270"></a>01270 gtk_combo_box_set_active (GTK_COMBO_BOX (render_combobox), t);
<a name="l01271"></a>01271 }
<a name="l01272"></a>01272
<a name="l01273"></a>01273 <span class="comment">/* ---------------------------------------------------- */</span>
<a name="l01282"></a>01282 gboolean
<a name="l01283"></a><a class="code" href="interface_8h.html#cc447e3316fb88882b7f71d7b32643bd">01283</a> <a class="code" href="interface_8c.html#cc447e3316fb88882b7f71d7b32643bd" title="This dialog box shows a message and two buttons: &amp;quot;OK&amp;quot; and &amp;quot;Cancel&amp;quot;...">interface_get_alert_dialog_response</a> (gchar *primaryText, gchar *secondaryText,
<a name="l01284"></a>01284 gboolean show_checkbox, gboolean *ask_to_show_again )
<a name="l01285"></a>01285 <span class="comment">/* This fcn returns TRUE if the user presses the OK button,</span>
<a name="l01286"></a>01286 <span class="comment"> otherwise it returns FALSE. */</span>
<a name="l01287"></a>01287 {
<a name="l01288"></a>01288 <span class="comment">/* Set show_checkbox = TRUE to show "do not show this again" checkbox. */</span>
<a name="l01289"></a>01289 <span class="comment">/* Point ask_to_show_again to the variable to set to not show the checkbox. */</span>
<a name="l01290"></a>01290 GtkWidget *dialog1;
<a name="l01291"></a>01291 GtkWidget *dialog_vbox1;
<a name="l01292"></a>01292 GtkWidget *hbox1;
<a name="l01293"></a>01293 GtkWidget *image1;
<a name="l01294"></a>01294 GtkWidget *label1;
<a name="l01295"></a>01295 GtkWidget *checkbox=NULL;
<a name="l01296"></a>01296 GtkWidget *dialog_action_area1;
<a name="l01297"></a>01297 GtkWidget *cancelbutton1;
<a name="l01298"></a>01298 GtkWidget *okbutton1;
<a name="l01299"></a>01299 gboolean returnVal = FALSE;
<a name="l01300"></a>01300
<a name="l01301"></a>01301 dialog1 = gtk_dialog_new ();
<a name="l01302"></a>01302 gtk_container_set_border_width (GTK_CONTAINER (dialog1), 6);
<a name="l01303"></a>01303 gtk_window_set_resizable (GTK_WINDOW (dialog1), FALSE);
<a name="l01304"></a>01304 gtk_window_set_type_hint (GTK_WINDOW (dialog1), GDK_WINDOW_TYPE_HINT_DIALOG);
<a name="l01305"></a>01305 gtk_dialog_set_has_separator (GTK_DIALOG (dialog1), FALSE);
<a name="l01306"></a>01306
<a name="l01307"></a>01307 dialog_vbox1 = GTK_DIALOG (dialog1)-&gt;vbox;
<a name="l01308"></a>01308
<a name="l01309"></a>01309 hbox1 = gtk_hbox_new (FALSE, 12);
<a name="l01310"></a>01310 gtk_box_pack_start (GTK_BOX (dialog_vbox1), hbox1, TRUE, TRUE, 0);
<a name="l01311"></a>01311 gtk_container_set_border_width (GTK_CONTAINER (hbox1), 6);
<a name="l01312"></a>01312
<a name="l01313"></a>01313 image1 = gtk_image_new_from_icon_name (<span class="stringliteral">"gtk-dialog-warning"</span>, GTK_ICON_SIZE_DIALOG);
<a name="l01314"></a>01314 gtk_box_pack_start (GTK_BOX (hbox1), image1, TRUE, TRUE, 0);
<a name="l01315"></a>01315 gtk_misc_set_alignment (GTK_MISC (image1), 0.5, 0);
<a name="l01316"></a>01316
<a name="l01317"></a>01317 gchar *labelMessage = g_strconcat (<span class="stringliteral">"&lt;span weight=\"bold\" size=\"larger\"&gt;"</span>,primaryText,
<a name="l01318"></a>01318 <span class="stringliteral">"&lt;/span&gt;\n&lt;span/&gt;\n"</span>,secondaryText,NULL);
<a name="l01319"></a>01319 label1 = gtk_label_new (labelMessage);
<a name="l01320"></a>01320 g_free (labelMessage);
<a name="l01321"></a>01321 GtkWidget *vbox9 = gtk_vbox_new (FALSE, 0);
<a name="l01322"></a>01322 gtk_box_pack_start (GTK_BOX (vbox9), label1, FALSE, FALSE, 0);
<a name="l01323"></a>01323 gtk_box_pack_start (GTK_BOX (hbox1), vbox9, FALSE, FALSE, 0);
<a name="l01324"></a>01324 gtk_label_set_use_markup (GTK_LABEL (label1), TRUE);
<a name="l01325"></a>01325 gtk_label_set_line_wrap (GTK_LABEL (label1), TRUE);
<a name="l01326"></a>01326
<a name="l01327"></a>01327 <span class="comment">// even with no checkbox, this extra hbox gives the recommended 24 px space between the</span>
<a name="l01328"></a>01328 <span class="comment">// label and the buttons</span>
<a name="l01329"></a>01329 GtkWidget *hbox2 = gtk_hbox_new (FALSE, 12);
<a name="l01330"></a>01330 <span class="keywordflow">if</span> (show_checkbox) {
<a name="l01331"></a>01331 GtkWidget *label3 = gtk_label_new (<span class="stringliteral">" "</span>);
<a name="l01332"></a>01332
<a name="l01333"></a>01333 checkbox = gtk_check_button_new_with_label(<span class="stringliteral">"Do not show this dialog again."</span>);
<a name="l01334"></a>01334 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(checkbox), FALSE);
<a name="l01335"></a>01335 gtk_box_pack_start (GTK_BOX (hbox2), label3, FALSE, FALSE, 0);
<a name="l01336"></a>01336 gtk_box_pack_start (GTK_BOX (hbox2), checkbox, FALSE, FALSE, 0);
<a name="l01337"></a>01337 }
<a name="l01338"></a>01338 gtk_box_pack_start (GTK_BOX (vbox9), hbox2, FALSE, FALSE, 12);
<a name="l01339"></a>01339
<a name="l01340"></a>01340 dialog_action_area1 = GTK_DIALOG (dialog1)-&gt;action_area;
<a name="l01341"></a>01341 gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area1), GTK_BUTTONBOX_END);
<a name="l01342"></a>01342
<a name="l01343"></a>01343 cancelbutton1 = gtk_button_new_from_stock (<span class="stringliteral">"gtk-cancel"</span>);
<a name="l01344"></a>01344 gtk_dialog_add_action_widget (GTK_DIALOG (dialog1), cancelbutton1, GTK_RESPONSE_CANCEL);
<a name="l01345"></a>01345 GTK_WIDGET_SET_FLAGS (cancelbutton1, GTK_CAN_DEFAULT);
<a name="l01346"></a>01346 gtk_widget_grab_default (cancelbutton1);
<a name="l01347"></a>01347 gtk_widget_grab_focus (cancelbutton1);
<a name="l01348"></a>01348
<a name="l01349"></a>01349 okbutton1 = gtk_button_new_from_stock (<span class="stringliteral">"gtk-ok"</span>);
<a name="l01350"></a>01350 gtk_dialog_add_action_widget (GTK_DIALOG (dialog1), okbutton1, GTK_RESPONSE_OK);
<a name="l01351"></a>01351 GTK_WIDGET_SET_FLAGS (okbutton1, GTK_CAN_DEFAULT);
<a name="l01352"></a>01352
<a name="l01353"></a>01353 gtk_widget_show_all (dialog1);
<a name="l01354"></a>01354
<a name="l01355"></a>01355 <span class="keywordflow">if</span> (gtk_dialog_run ((GtkDialog*)dialog1) == GTK_RESPONSE_OK) {
<a name="l01356"></a>01356 <span class="comment">/* check to see if user clicked on "do not show again" box */</span>
<a name="l01357"></a>01357 <span class="keywordflow">if</span> ((show_checkbox == TRUE) &amp;&amp;
<a name="l01358"></a>01358 (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkbox)) == TRUE)) {
<a name="l01359"></a>01359 <span class="comment">/* The user clicked the "do not show again box". Set corresponding</span>
<a name="l01360"></a>01360 <span class="comment"> * flag to FALSE. */</span>
<a name="l01361"></a>01361 *ask_to_show_again = FALSE;
<a name="l01362"></a>01362 }
<a name="l01363"></a>01363 returnVal = TRUE;
<a name="l01364"></a>01364 }
<a name="l01365"></a>01365 gtk_widget_destroy (dialog1);
<a name="l01366"></a>01366
<a name="l01367"></a>01367 <span class="keywordflow">return</span> returnVal;
<a name="l01368"></a>01368 }
<a name="l01369"></a>01369
<a name="l01370"></a>01370
<a name="l01371"></a>01371
<a name="l01372"></a>01372 <span class="comment">/* ---------------------------------------------------- */</span>
<a name="l01378"></a>01378 <span class="keywordtype">void</span>
<a name="l01379"></a><a class="code" href="interface_8h.html#73894ef701a1c323c3caee926e535094">01379</a> <a class="code" href="interface_8c.html#73894ef701a1c323c3caee926e535094" title="This dialog box shows a textmessage and one buttons: &amp;quot;OK&amp;quot;.">interface_show_alert_dialog</a> (gchar *primaryText, gchar *secondaryText,
<a name="l01380"></a>01380 gboolean show_checkbox, gboolean *ask_to_show_again )
<a name="l01381"></a>01381 <span class="comment">/* This fcn tells the user something, and only displays "OK" */</span>
<a name="l01382"></a>01382 {
<a name="l01383"></a>01383 <span class="comment">/* Set show_checkbox = TRUE to show "do not show this again" checkbox. */</span>
<a name="l01384"></a>01384 <span class="comment">/* Point ask_to_show_again to the variable to set to not show the checkbox. */</span>
<a name="l01385"></a>01385 GtkWidget *dialog1;
<a name="l01386"></a>01386 GtkWidget *dialog_vbox1;
<a name="l01387"></a>01387 GtkWidget *hbox1;
<a name="l01388"></a>01388 GtkWidget *image1;
<a name="l01389"></a>01389 GtkWidget *label1;
<a name="l01390"></a>01390 GtkWidget *checkbox=NULL;
<a name="l01391"></a>01391 GtkWidget *dialog_action_area1;
<a name="l01392"></a>01392 GtkWidget *okbutton1;
<a name="l01393"></a>01393
<a name="l01394"></a>01394 dialog1 = gtk_dialog_new ();
<a name="l01395"></a>01395 gtk_container_set_border_width (GTK_CONTAINER (dialog1), 6);
<a name="l01396"></a>01396 gtk_window_set_resizable (GTK_WINDOW (dialog1), FALSE);
<a name="l01397"></a>01397 gtk_window_set_type_hint (GTK_WINDOW (dialog1), GDK_WINDOW_TYPE_HINT_DIALOG);
<a name="l01398"></a>01398 gtk_dialog_set_has_separator (GTK_DIALOG (dialog1), FALSE);
<a name="l01399"></a>01399
<a name="l01400"></a>01400 dialog_vbox1 = GTK_DIALOG (dialog1)-&gt;vbox;
<a name="l01401"></a>01401
<a name="l01402"></a>01402 hbox1 = gtk_hbox_new (FALSE, 12);
<a name="l01403"></a>01403 gtk_box_pack_start (GTK_BOX (dialog_vbox1), hbox1, TRUE, TRUE, 0);
<a name="l01404"></a>01404 gtk_container_set_border_width (GTK_CONTAINER (hbox1), 6);
<a name="l01405"></a>01405
<a name="l01406"></a>01406 image1 = gtk_image_new_from_icon_name (<span class="stringliteral">"gtk-dialog-warning"</span>, GTK_ICON_SIZE_DIALOG);
<a name="l01407"></a>01407 gtk_box_pack_start (GTK_BOX (hbox1), image1, TRUE, TRUE, 0);
<a name="l01408"></a>01408 gtk_misc_set_alignment (GTK_MISC (image1), 0.5, 0);
<a name="l01409"></a>01409
<a name="l01410"></a>01410 gchar *labelMessage = g_strconcat (<span class="stringliteral">"&lt;span weight=\"bold\" size=\"larger\"&gt;"</span>,primaryText,
<a name="l01411"></a>01411 <span class="stringliteral">"&lt;/span&gt;\n&lt;span/&gt;\n"</span>,secondaryText,NULL);
<a name="l01412"></a>01412 label1 = gtk_label_new (labelMessage);
<a name="l01413"></a>01413 g_free (labelMessage);
<a name="l01414"></a>01414
<a name="l01415"></a>01415 GtkWidget *vbox9 = gtk_vbox_new (FALSE, 0);
<a name="l01416"></a>01416 gtk_box_pack_start (GTK_BOX (vbox9), label1, FALSE, FALSE, 0);
<a name="l01417"></a>01417 gtk_label_set_use_markup (GTK_LABEL (label1), TRUE);
<a name="l01418"></a>01418 gtk_label_set_line_wrap (GTK_LABEL (label1), TRUE);
<a name="l01419"></a>01419 gtk_box_pack_start (GTK_BOX (hbox1), vbox9, FALSE, FALSE, 0);
<a name="l01420"></a>01420
<a name="l01421"></a>01421 GtkWidget *hbox2 = gtk_hbox_new (FALSE, 12);
<a name="l01422"></a>01422 <span class="keywordflow">if</span> (show_checkbox) {
<a name="l01423"></a>01423 GtkWidget *label3 = gtk_label_new (<span class="stringliteral">" "</span>);
<a name="l01424"></a>01424
<a name="l01425"></a>01425 checkbox = gtk_check_button_new_with_label(<span class="stringliteral">"Do not show this dialog again."</span>);
<a name="l01426"></a>01426 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(checkbox), FALSE);
<a name="l01427"></a>01427 gtk_box_pack_start (GTK_BOX (hbox2), label3, FALSE, FALSE, 0);
<a name="l01428"></a>01428 gtk_box_pack_start (GTK_BOX (hbox2), checkbox, FALSE, FALSE, 0);
<a name="l01429"></a>01429 }
<a name="l01430"></a>01430 gtk_box_pack_start (GTK_BOX (vbox9), hbox2, FALSE, FALSE, 12);
<a name="l01431"></a>01431
<a name="l01432"></a>01432 dialog_action_area1 = GTK_DIALOG (dialog1)-&gt;action_area;
<a name="l01433"></a>01433 gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area1), GTK_BUTTONBOX_END);
<a name="l01434"></a>01434
<a name="l01435"></a>01435 okbutton1 = gtk_button_new_from_stock (<span class="stringliteral">"gtk-ok"</span>);
<a name="l01436"></a>01436 gtk_dialog_add_action_widget (GTK_DIALOG (dialog1), okbutton1, GTK_RESPONSE_OK);
<a name="l01437"></a>01437 GTK_WIDGET_SET_FLAGS (okbutton1, GTK_CAN_DEFAULT);
<a name="l01438"></a>01438
<a name="l01439"></a>01439 gtk_widget_show_all (dialog1);
<a name="l01440"></a>01440
<a name="l01441"></a>01441 <span class="comment">/* check to see if user clicked on "do not show again" box */</span>
<a name="l01442"></a>01442 <span class="keywordflow">if</span> ((show_checkbox == TRUE) &amp;&amp;
<a name="l01443"></a>01443 (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(checkbox)) == TRUE)) {
<a name="l01444"></a>01444 <span class="comment">/* The user clicked the "do not show again box". Set corresponding</span>
<a name="l01445"></a>01445 <span class="comment"> * flag to FALSE. */</span>
<a name="l01446"></a>01446 *ask_to_show_again = FALSE;
<a name="l01447"></a>01447 }
<a name="l01448"></a>01448
<a name="l01449"></a>01449 gtk_dialog_run (GTK_DIALOG(dialog1));
<a name="l01450"></a>01450 gtk_widget_destroy (dialog1);
<a name="l01451"></a>01451
<a name="l01452"></a>01452 <span class="keywordflow">return</span>;
<a name="l01453"></a>01453 }
<a name="l01454"></a>01454
<a name="l01455"></a>01455
<a name="l01456"></a>01456
</pre></div></div>
<hr size="1"><address style="text-align: right;"><small>Generated on Tue Aug 19 00:14:49 2008 for gerbv by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
</body>
</html>