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

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

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

revision 2844 by persson, Sun Sep 20 08:49:40 2015 UTC revision 3409 by schoenebeck, Tue Jan 23 16:30:56 2018 UTC
# Line 1  Line 1 
1  /*  /*
2   * Copyright (C) 2006-2015 Andreas Persson   * Copyright (C) 2006-2017 Andreas Persson
3   *   *
4   * This program is free software; you can redistribute it and/or   * This program is free software; you can redistribute it and/or
5   * modify it under the terms of the GNU General Public License as   * modify it under the terms of the GNU General Public License as
# Line 17  Line 17 
17   * 02110-1301 USA.   * 02110-1301 USA.
18   */   */
19    
20  #include <cstring>  #include "global.h"
   
 #include <glibmmconfig.h>  
 // threads.h must be included first to be able to build with  
 // G_DISABLE_DEPRECATED  
 #if (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION == 31 && GLIBMM_MICRO_VERSION >= 2) || \  
     (GLIBMM_MAJOR_VERSION == 2 && GLIBMM_MINOR_VERSION > 31) || GLIBMM_MAJOR_VERSION > 2  
 #include <glibmm/threads.h>  
 #endif  
   
21  #include "paramedit.h"  #include "paramedit.h"
22    
 #include "global.h"  
23  #include "compat.h"  #include "compat.h"
24  #include "Settings.h"  #include "Settings.h"
25    
26    #include <glibmm/glibmm.h>
27  #include <gtkmm/messagedialog.h>  #include <gtkmm/messagedialog.h>
28    
 std::string gig_encoding("CP1252");  
   
 Glib::ustring gig_to_utf8(const gig::String& gig_string) {  
     return Glib::convert_with_fallback(gig_string, "UTF-8", gig_encoding, "?");  
 }  
   
 gig::String gig_from_utf8(const Glib::ustring& utf8_string) {  
     return Glib::convert_with_fallback(utf8_string, gig_encoding, "UTF-8", "?");  
 }  
   
   
29  namespace {  namespace {
30      struct CCText {      struct CCText {
31          const char* const txt;          const char* const txt;
# Line 160  LabelWidget::LabelWidget(const char* lab Line 140  LabelWidget::LabelWidget(const char* lab
140      label(Glib::ustring(labelText) + ":"),      label(Glib::ustring(labelText) + ":"),
141      widget(widget)      widget(widget)
142  {  {
143    #if HAS_GTKMM_ALIGNMENT
144      label.set_alignment(Gtk::ALIGN_START);      label.set_alignment(Gtk::ALIGN_START);
145    #else
146        label.set_halign(Gtk::Align::START);
147    #endif
148        Settings::singleton()->showTooltips.get_proxy().signal_changed().connect(
149            sigc::mem_fun(this, &LabelWidget::on_show_tooltips_changed)
150        );
151    
152        // workaround for a crash with certain gtkmm versions: postpone calling
153        // on_show_tooltips_changed() because widget.gobj() might be uninitialized
154        // at this point yet
155        Glib::signal_idle().connect_once( // timeout starts given amount of ms after the main loop became idle again ...
156            sigc::mem_fun(*this, &LabelWidget::on_show_tooltips_changed),
157            300
158        );
159    }
160    
161    void LabelWidget::on_show_tooltips_changed() {
162        const bool b = Settings::singleton()->showTooltips;
163        label.set_has_tooltip(b);
164        widget.set_has_tooltip(b);
165  }  }
166    
167  void LabelWidget::set_sensitive(bool sensitive)  void LabelWidget::set_sensitive(bool sensitive)
# Line 172  void LabelWidget::set_sensitive(bool sen Line 173  void LabelWidget::set_sensitive(bool sen
173  ReadOnlyLabelWidget::ReadOnlyLabelWidget(const char* leftHandText)  ReadOnlyLabelWidget::ReadOnlyLabelWidget(const char* leftHandText)
174      : LabelWidget(leftHandText, text)      : LabelWidget(leftHandText, text)
175  {  {
176    #if HAS_GTKMM_ALIGNMENT
177      text.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_START);      text.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_START);
178    #else
179        label.set_halign(Gtk::Align::START);
180        label.set_valign(Gtk::Align::START);
181    #endif
182  }  }
183    
184  ReadOnlyLabelWidget::ReadOnlyLabelWidget(const char* leftHandText, const char* rightHandText)  ReadOnlyLabelWidget::ReadOnlyLabelWidget(const char* leftHandText, const char* rightHandText)
185     : LabelWidget(leftHandText, text)     : LabelWidget(leftHandText, text)
186  {  {
187    #if HAS_GTKMM_ALIGNMENT
188      text.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_START);      text.set_alignment(Gtk::ALIGN_START, Gtk::ALIGN_START);
189    #else
190        text.set_halign(Gtk::Align::START);
191        text.set_valign(Gtk::Align::START);
192    #endif
193      text.set_text(rightHandText);      text.set_text(rightHandText);
194  }  }
195    
# Line 202  NumEntry::NumEntry(const char* labelText Line 213  NumEntry::NumEntry(const char* labelText
213      box.add(scale);      box.add(scale);
214  }  }
215    
216    void NumEntry::on_show_tooltips_changed() {
217        LabelWidget::on_show_tooltips_changed();
218    
219        const bool b = Settings::singleton()->showTooltips;
220        spinbutton.set_has_tooltip(b);
221        scale.set_has_tooltip(b);
222    }
223    
224  NumEntryGain::NumEntryGain(const char* labelText,  NumEntryGain::NumEntryGain(const char* labelText,
225                             double lower, double upper,                             double lower, double upper,
226                             int decimals, double coeff) :                             int decimals, double coeff) :
# Line 252  BoolEntryPlus6::BoolEntryPlus6(const cha Line 271  BoolEntryPlus6::BoolEntryPlus6(const cha
271          sigc::mem_fun(*this, &BoolEntryPlus6::value_changed));          sigc::mem_fun(*this, &BoolEntryPlus6::value_changed));
272  }  }
273    
274    void BoolEntryPlus6::on_show_tooltips_changed() {
275        LabelWidget::on_show_tooltips_changed();
276    
277        eGain.on_show_tooltips_changed();
278    }
279    
280  void BoolEntryPlus6::value_changed()  void BoolEntryPlus6::value_changed()
281  {  {
282      if (checkbutton.get_active()) eGain.set_value(plus6value);      if (checkbutton.get_active()) eGain.set_value(plus6value);
# Line 329  namespace { Line 354  namespace {
354                  return true;                  return true;
355              }              }
356          }          }
357    
358    #if HAS_GTKMM_CPP11_ENUMS
359            return Gtk::SpinButton::INPUT_ERROR;
360    #else
361          return Gtk::INPUT_ERROR;          return Gtk::INPUT_ERROR;
362    #endif
363      }      }
364  }  }
365    
# Line 349  Glib::ustring note_str(int note) Line 379  Glib::ustring note_str(int note)
379    
380  namespace {  namespace {
381      // Convert the Entry text to a number      // Convert the Entry text to a number
382    #if GTKMM_MAJOR_VERSION > 3 || (GTKMM_MAJOR_VERSION == 3 && (GTKMM_MINOR_VERSION > 91 || (GTKMM_MINOR_VERSION == 91 && GTKMM_MICRO_VERSION >= 2))) // GTKMM >= 3.91.2
383        int on_input(double& new_value, Gtk::SpinButton* spinbutton) {
384            return note_value(spinbutton->get_text(), &new_value);
385        }
386    #else
387      int on_input(double* new_value, Gtk::SpinButton* spinbutton) {      int on_input(double* new_value, Gtk::SpinButton* spinbutton) {
388          return note_value(spinbutton->get_text(), new_value);          return note_value(spinbutton->get_text(), new_value);
389      }      }
390    #endif
391    
392      // Convert the Adjustment position to text      // Convert the Adjustment position to text
393      bool on_output(Gtk::SpinButton* spinbutton) {      bool on_output(Gtk::SpinButton* spinbutton) {
# Line 372  void spin_button_show_notes(Gtk::SpinBut Line 408  void spin_button_show_notes(Gtk::SpinBut
408          sigc::bind(sigc::ptr_fun(&on_output), &spin_button));          sigc::bind(sigc::ptr_fun(&on_output), &spin_button));
409  }  }
410    
411    void ChoiceEntryBase::on_show_tooltips_changed() {
412        LabelWidget::on_show_tooltips_changed();
413    
414        const bool b = Settings::singleton()->showTooltips;
415        combobox.set_has_tooltip(b);
416    }
417    
418  ChoiceEntryLeverageCtrl::ChoiceEntryLeverageCtrl(const char* labelText) :  ChoiceEntryLeverageCtrl::ChoiceEntryLeverageCtrl(const char* labelText) :
419    #if HAS_GTKMM_ALIGNMENT
420      LabelWidget(labelText, align),      LabelWidget(labelText, align),
421      align(0, 0, 0, 0)      align(0, 0, 0, 0)
422    #else
423        LabelWidget(labelText, combobox)
424    #endif
425  {  {
426      for (int i = 0 ; i < controlChangeTextsSize ; i++) {      for (int i = 0 ; i < controlChangeTextsSize ; i++) {
427          if (controlChangeTexts[i].txt) {          if (controlChangeTexts[i].txt) {
# Line 391  ChoiceEntryLeverageCtrl::ChoiceEntryLeve Line 438  ChoiceEntryLeverageCtrl::ChoiceEntryLeve
438      }      }
439      combobox.signal_changed().connect(      combobox.signal_changed().connect(
440          sigc::mem_fun(*this, &ChoiceEntryLeverageCtrl::value_changed));          sigc::mem_fun(*this, &ChoiceEntryLeverageCtrl::value_changed));
441    #if HAS_GTKMM_ALIGNMENT
442      align.add(combobox);      align.add(combobox);
443    #else
444        combobox.set_halign(Gtk::Align::FILL);
445        combobox.set_valign(Gtk::Align::FILL);
446    #endif
447      value.type = gig::leverage_ctrl_t::type_none;      value.type = gig::leverage_ctrl_t::type_none;
448      value.controller_number = 0;      value.controller_number = 0;
449  }  }
450    
451    void ChoiceEntryLeverageCtrl::on_show_tooltips_changed() {
452        LabelWidget::on_show_tooltips_changed();
453    
454        const bool b = Settings::singleton()->showTooltips;
455        combobox.set_has_tooltip(b);
456    }
457    
458  void ChoiceEntryLeverageCtrl::value_changed()  void ChoiceEntryLeverageCtrl::value_changed()
459  {  {
460      int rowno = combobox.get_active_row_number();      int rowno = combobox.get_active_row_number();
# Line 474  void ChoiceEntryLeverageCtrl::set_value( Line 533  void ChoiceEntryLeverageCtrl::set_value(
533  }  }
534    
535    
536    BoolBox::BoolBox(const char* labelText) : Gtk::CheckButton(labelText) {
537        signal_toggled().connect(sig_changed.make_slot());
538        Settings::singleton()->showTooltips.get_proxy().signal_changed().connect(
539            sigc::mem_fun(this, &BoolBox::on_show_tooltips_changed)
540        );
541        on_show_tooltips_changed();
542    }
543    
544    void BoolBox::on_show_tooltips_changed() {
545        const bool b = Settings::singleton()->showTooltips;
546        set_has_tooltip(b);
547    }
548    
549    
550  BoolEntry::BoolEntry(const char* labelText) :  BoolEntry::BoolEntry(const char* labelText) :
551      LabelWidget(labelText, checkbutton),      LabelWidget(labelText, checkbutton),
552      checkbutton(labelText)      checkbutton(labelText)
# Line 523  void StringEntryMultiLine::set_value(con Line 596  void StringEntryMultiLine::set_value(con
596      text_buffer->set_text(text);      text_buffer->set_text(text);
597  }  }
598    
599    void StringEntryMultiLine::on_show_tooltips_changed() {
600        LabelWidget::on_show_tooltips_changed();
601    
602        const bool b = Settings::singleton()->showTooltips;
603        text_view.set_has_tooltip(b);
604    }
605    
606    
607  Table::Table(int x, int y) : Gtk::Table(x, y), rowno(0) {  }  Table::Table(int x, int y) :
608    #if USE_GTKMM_GRID
609        Gtk::Grid(),
610        cols(x),
611    #else
612        Gtk::Table(x, y),
613    #endif
614        rowno(0)
615    {
616    }
617    
618  void Table::add(BoolEntry& boolentry)  void Table::add(BoolEntry& boolentry)
619  {  {
620    #if USE_GTKMM_GRID
621        attach(boolentry.widget, 0, rowno, 2);
622    #else
623      attach(boolentry.widget, 0, 2, rowno, rowno + 1,      attach(boolentry.widget, 0, 2, rowno, rowno + 1,
624             Gtk::FILL, Gtk::SHRINK);             Gtk::FILL, Gtk::SHRINK);
625    #endif
626      rowno++;      rowno++;
627  }  }
628    
629  void Table::add(BoolEntryPlus6& boolentry)  void Table::add(BoolEntryPlus6& boolentry)
630  {  {
631    #if USE_GTKMM_GRID
632        attach(boolentry.widget, 0, rowno, 2);
633    #else
634      attach(boolentry.widget, 0, 2, rowno, rowno + 1,      attach(boolentry.widget, 0, 2, rowno, rowno + 1,
635             Gtk::FILL, Gtk::SHRINK);             Gtk::FILL, Gtk::SHRINK);
636    #endif
637      rowno++;      rowno++;
638  }  }
639    
640  void Table::add(LabelWidget& prop)  void Table::add(LabelWidget& prop)
641  {  {
642    #if USE_GTKMM_GRID
643        attach(prop.label, 1, rowno);
644        attach(prop.widget, 2, rowno);
645    #else
646      attach(prop.label, 1, 2, rowno, rowno + 1,      attach(prop.label, 1, 2, rowno, rowno + 1,
647             Gtk::FILL, Gtk::SHRINK);             Gtk::FILL, Gtk::SHRINK);
648      attach(prop.widget, 2, 3, rowno, rowno + 1,      attach(prop.widget, 2, 3, rowno, rowno + 1,
649             Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);             Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);
650    #endif
651      rowno++;      rowno++;
652  }  }

Legend:
Removed from v.2844  
changed lines
  Added in v.3409

  ViewVC Help
Powered by ViewVC