/[svn]/gigedit/trunk/src/gigedit/mainwindow.cpp
ViewVC logotype

Diff of /gigedit/trunk/src/gigedit/mainwindow.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 3106 by schoenebeck, Sat Feb 11 17:04:48 2017 UTC revision 3109 by schoenebeck, Sun Feb 12 16:35:03 2017 UTC
# Line 65  MainWindow::MainWindow() : Line 65  MainWindow::MainWindow() :
65      dimreg_all_regions(_("all regions")),      dimreg_all_regions(_("all regions")),
66      dimreg_all_dimregs(_("all dimension splits")),      dimreg_all_dimregs(_("all dimension splits")),
67      dimreg_stereo(_("both channels")),      dimreg_stereo(_("both channels")),
68        labelLegend(_("Legend:")),
69      labelNoSample(_(" No Sample")),      labelNoSample(_(" No Sample")),
70      labelMissingSample(_(" Missing some Sample(s)")),      labelMissingSample(_(" Missing some Sample(s)")),
71      labelLooped(_(" Looped")),      labelLooped(_(" Looped")),
# Line 109  MainWindow::MainWindow() : Line 110  MainWindow::MainWindow() :
110      dimreg_vbox.add(dimreg_edit);      dimreg_vbox.add(dimreg_edit);
111      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);      dimreg_vbox.pack_start(dimreg_hbox, Gtk::PACK_SHRINK);
112      {      {
113            legend_hbox.add(labelLegend);
114    
115          imageNoSample.set(redDot);          imageNoSample.set(redDot);
116          imageNoSample.set_alignment(Gtk::ALIGN_RIGHT);          imageNoSample.set_alignment(Gtk::ALIGN_END);
117          labelNoSample.set_alignment(Gtk::ALIGN_LEFT);          labelNoSample.set_alignment(Gtk::ALIGN_START);
118          legend_hbox.add(imageNoSample);          legend_hbox.add(imageNoSample);
119          legend_hbox.add(labelNoSample);          legend_hbox.add(labelNoSample);
120    
121          imageMissingSample.set(yellowDot);          imageMissingSample.set(yellowDot);
122          imageMissingSample.set_alignment(Gtk::ALIGN_RIGHT);          imageMissingSample.set_alignment(Gtk::ALIGN_END);
123          labelMissingSample.set_alignment(Gtk::ALIGN_LEFT);          labelMissingSample.set_alignment(Gtk::ALIGN_START);
124          legend_hbox.add(imageMissingSample);          legend_hbox.add(imageMissingSample);
125          legend_hbox.add(labelMissingSample);          legend_hbox.add(labelMissingSample);
126    
127          imageLooped.set(blackLoop);          imageLooped.set(blackLoop);
128          imageLooped.set_alignment(Gtk::ALIGN_RIGHT);          imageLooped.set_alignment(Gtk::ALIGN_END);
129          labelLooped.set_alignment(Gtk::ALIGN_LEFT);          labelLooped.set_alignment(Gtk::ALIGN_START);
130          legend_hbox.add(imageLooped);          legend_hbox.add(imageLooped);
131          legend_hbox.add(labelLooped);          legend_hbox.add(labelLooped);
132    
133          imageSomeLoops.set(grayLoop);          imageSomeLoops.set(grayLoop);
134          imageSomeLoops.set_alignment(Gtk::ALIGN_RIGHT);          imageSomeLoops.set_alignment(Gtk::ALIGN_END);
135          labelSomeLoops.set_alignment(Gtk::ALIGN_LEFT);          labelSomeLoops.set_alignment(Gtk::ALIGN_START);
136          legend_hbox.add(imageSomeLoops);          legend_hbox.add(imageSomeLoops);
137          legend_hbox.add(labelSomeLoops);          legend_hbox.add(labelSomeLoops);
138    

Legend:
Removed from v.3106  
changed lines
  Added in v.3109

  ViewVC Help
Powered by ViewVC