summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: a73d81e)
raw | patch | inline | side by side (parent: a73d81e)
author | joncruz <joncruz@users.sourceforge.net> | |
Thu, 4 Oct 2007 02:36:27 +0000 (02:36 +0000) | ||
committer | joncruz <joncruz@users.sourceforge.net> | |
Thu, 4 Oct 2007 02:36:27 +0000 (02:36 +0000) |
src/ui/dialog/inkscape-preferences.cpp | patch | blob | history | |
src/ui/dialog/inkscape-preferences.h | patch | blob | history |
index 17253a4a69a6ecd4baede6ee8ba483ffcbed3f6a..e3d0de1f9a9f7cb0835fd2965f26402d910cf6b2 100644 (file)
void InkscapePreferences::initPageCMS()
{
- _misc_cms_display.init( _("Enable display calibration"), "options.displayprofile", "enable", false);
- _page_cms.add_line( false, "", _misc_cms_display, "",
- _("Enables application of the display using an ICC profile."), false);
+ _cms_display.init( _("Enable display calibration"), "options.displayprofile", "enable", false);
+ _page_cms.add_line( false, "", _cms_display, "",
+ _("Enables application of the display using an ICC profile."), false);
int const numIntents = 4;
Glib::ustring intentLabels[numIntents] = {_("Perceptual"), _("Relative Colorimetric"), _("Saturation"), _("Absolute Colorimetric")};
int intentValues[numIntents] = {0, 1, 2, 3};
- _misc_cms_intent.init("options.displayprofile", "intent", intentLabels, intentValues, numIntents, 0);
- _page_cms.add_line( false, _("Display intent:"), _misc_cms_intent, "",
- _("The rendering intent to use to calibrate display output."), false);
+ _cms_intent.init("options.displayprofile", "intent", intentLabels, intentValues, numIntents, 0);
+ _page_cms.add_line( false, _("Display intent:"), _cms_intent, "",
+ _("The rendering intent to use to calibrate display output."), false);
- _page_cms.add_line( false, _("Display profile:"), _misc_cms_display_profile, "",
- _("The ICC profile to use to calibrate display output."), false);
+ _page_cms.add_line( false, _("Display profile:"), _cms_display_profile, "",
+ _("The ICC profile to use to calibrate display output."), false);
- _misc_cms_softproof.init( _("Simulate output on screen."), "options.softproof", "enable", false);
- _page_cms.add_line( false, "", _misc_cms_softproof, "",
- _("Simulates output of target device."), false);
+ _cms_softproof.init( _("Simulate output on screen."), "options.softproof", "enable", false);
+ _page_cms.add_line( false, "", _cms_softproof, "",
+ _("Simulates output of target device."), false);
- _misc_cms_gamutwarn.init( _("Mark out of gamut colors."), "options.softproof", "gamutwarn", false);
- _page_cms.add_line( false, "", _misc_cms_gamutwarn, "",
- _("Highlights colors that are out of gamut for the target device."), false);
+ _cms_gamutwarn.init( _("Mark out of gamut colors."), "options.softproof", "gamutwarn", false);
+ _page_cms.add_line( false, "", _cms_gamutwarn, "",
+ _("Highlights colors that are out of gamut for the target device."), false);
- _misc_cms_proof_intent.init("options.softproof", "intent", intentLabels, intentValues, numIntents, 0);
- _page_cms.add_line( false, _("Device intent:"), _misc_cms_proof_intent, "",
- _("The rendering intent to use to calibrate display output."), false);
+ _cms_proof_intent.init("options.softproof", "intent", intentLabels, intentValues, numIntents, 0);
+ _page_cms.add_line( false, _("Device intent:"), _cms_proof_intent, "",
+ _("The rendering intent to use to calibrate display output."), false);
- _page_cms.add_line( false, _("Device profile:"), _misc_cms_proof_profile, "",
- _("The ICC profile to use to simulate device output."), false);
+ _page_cms.add_line( false, _("Device profile:"), _cms_proof_profile, "",
+ _("The ICC profile to use to simulate device output."), false);
#if ENABLE_LCMS
{
gint index = 0;
for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
- _misc_cms_display_profile.append_text( *it );
+ _cms_display_profile.append_text( *it );
Glib::ustring path = get_path_for_profile(*it);
if ( !path.empty() && path == current ) {
- _misc_cms_display_profile.set_active(index);
+ _cms_display_profile.set_active(index);
}
index++;
}
current = tmp ? tmp : "";
index = 0;
for ( std::vector<Glib::ustring>::iterator it = names.begin(); it != names.end(); ++it ) {
- _misc_cms_proof_profile.append_text( *it );
+ _cms_proof_profile.append_text( *it );
Glib::ustring path = get_path_for_profile(*it);
if ( !path.empty() && path == current ) {
- _misc_cms_proof_profile.set_active(index);
+ _cms_proof_profile.set_active(index);
}
index++;
}
}
- _misc_cms_display.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
- _misc_cms_softproof.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
- _misc_cms_gamutwarn.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
+ _cms_display.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
+ _cms_softproof.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
+ _cms_gamutwarn.signal_toggled().connect( sigc::ptr_fun(forceUpdates) );
- _misc_cms_intent.signal_changed().connect( sigc::ptr_fun(forceUpdates) );
- _misc_cms_proof_intent.signal_changed().connect( sigc::ptr_fun(forceUpdates) );
+ _cms_intent.signal_changed().connect( sigc::ptr_fun(forceUpdates) );
+ _cms_proof_intent.signal_changed().connect( sigc::ptr_fun(forceUpdates) );
- _misc_cms_display_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(profileComboChanged), &_misc_cms_display_profile) );
- _misc_cms_proof_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(proofComboChanged), &_misc_cms_proof_profile) );
+ _cms_display_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(profileComboChanged), &_cms_display_profile) );
+ _cms_proof_profile.signal_changed().connect( sigc::bind( sigc::ptr_fun(proofComboChanged), &_cms_proof_profile) );
#else
// disable it, but leave it visible
- _misc_cms_display.set_sensitive( false );
- _misc_cms_intent.set_sensitive( false );
- _misc_cms_display_profile.set_sensitive( false );
- _misc_cms_softproof.set_sensitive( false );
- _misc_cms_gamutwarn.set_sensitive( false );
- _misc_cms_proof_intent.set_sensitive( false );
- _misc_cms_proof_profile.set_sensitive( false );
+ _cms_display.set_sensitive( false );
+ _cms_intent.set_sensitive( false );
+ _cms_display_profile.set_sensitive( false );
+ _cms_softproof.set_sensitive( false );
+ _cms_gamutwarn.set_sensitive( false );
+ _cms_proof_intent.set_sensitive( false );
+ _cms_proof_profile.set_sensitive( false );
#endif // ENABLE_LCMS
this->AddPage(_page_cms, _("Color Management"), PREFS_PAGE_CMS);
index 615ef984f59b29d4d5e59c7047ee1597f3012b47..c41971fddfa264bbc43afda69c3db41280ee34ad 100644 (file)
PrefCheckButton _misc_small_toolbar;
PrefCombo _misc_overs_bitmap;
- PrefCheckButton _misc_cms_display;
- PrefCombo _misc_cms_intent;
- Gtk::ComboBoxText _misc_cms_display_profile;
-
- PrefCheckButton _misc_cms_softproof;
- PrefCheckButton _misc_cms_gamutwarn;
- PrefCombo _misc_cms_proof_intent;
- Gtk::ComboBoxText _misc_cms_proof_profile;
+ PrefCheckButton _cms_display;
+ PrefCombo _cms_intent;
+ Gtk::ComboBoxText _cms_display_profile;
+
+ PrefCheckButton _cms_softproof;
+ PrefCheckButton _cms_gamutwarn;
+ PrefCombo _cms_proof_intent;
+ Gtk::ComboBoxText _cms_proof_profile;
PrefEntryButtonHBox _importexport_ocal_url;
PrefEntry _importexport_ocal_username;