[Lprof-devel] lprof/src/checkerqt profilechecker.cpp, 1.49.2.5, 1.49.2.6 profilechecker.h, 1.9, 1.9
Brought to you by:
hvengel
From: Amit K. <ami...@us...> - 2009-07-12 15:09:09
|
Update of /cvsroot/lprof/lprof/src/checkerqt In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3010/checkerqt Modified Files: Tag: GSoC-2009 profilechecker.cpp profilechecker.h profilecheckerbase.ui Log Message: Index: profilecheckerbase.ui =================================================================== RCS file: /cvsroot/lprof/lprof/src/checkerqt/profilecheckerbase.ui,v retrieving revision 1.25.2.2 retrieving revision 1.25.2.3 diff -C2 -d -r1.25.2.2 -r1.25.2.3 *** profilecheckerbase.ui 5 Jul 2009 20:33:17 -0000 1.25.2.2 --- profilecheckerbase.ui 12 Jul 2009 15:08:59 -0000 1.25.2.3 *************** *** 333,337 **** </property> <property name="currentIndex"> ! <number>3</number> </property> <widget class="QWidget" name="InfoTab"> --- 333,337 ---- </property> <property name="currentIndex"> ! <number>0</number> </property> <widget class="QWidget" name="InfoTab"> *************** *** 531,534 **** --- 531,540 ---- </size> </property> + <property name="maximumSize"> + <size> + <width>16777215</width> + <height>150</height> + </size> + </property> <property name="toolTip"> <string>Profile statisics</string> Index: profilechecker.h =================================================================== RCS file: /cvsroot/lprof/lprof/src/checkerqt/profilechecker.h,v retrieving revision 1.9 retrieving revision 1.9.2.1 diff -C2 -d -r1.9 -r1.9.2.1 *** profilechecker.h 19 Feb 2008 21:02:27 -0000 1.9 --- profilechecker.h 12 Jul 2009 15:08:59 -0000 1.9.2.1 *************** *** 35,39 **** #include "lcmsprf.h" #include <qtlcmswidgets.h> - //Added by qt3to4: #include <QResizeEvent> --- 35,38 ---- Index: profilechecker.cpp =================================================================== RCS file: /cvsroot/lprof/lprof/src/checkerqt/profilechecker.cpp,v retrieving revision 1.49.2.5 retrieving revision 1.49.2.6 diff -C2 -d -r1.49.2.5 -r1.49.2.6 *** profilechecker.cpp 7 Jul 2009 22:09:30 -0000 1.49.2.5 --- profilechecker.cpp 12 Jul 2009 15:08:59 -0000 1.49.2.6 *************** *** 61,65 **** #include <QFileDialog> - //Added by qt3to4: #include <QTranslator> #include <QResizeEvent> --- 61,64 ---- *************** *** 152,159 **** ComboBoxIntent -> clear(); ! ComboBoxIntent -> insertItem(100, QString::fromLocal8Bit("(*) ") + tr("Perceptual")); ! ComboBoxIntent -> insertItem(101, QString::fromLocal8Bit("(*) ") + tr("Relative colorimetric")); ! ComboBoxIntent -> insertItem(102, QString::fromLocal8Bit("(*) ") + tr("Saturation")); ! ComboBoxIntent -> insertItem(103, QString::fromLocal8Bit("(*) ") + tr("Absolute")); /* TRANSLATOR White point text for Profile Checker information screen */ --- 151,158 ---- ComboBoxIntent -> clear(); ! ComboBoxIntent -> insertItem((ComboBoxIntent->count()+1), QString::fromLocal8Bit("(*) ") + tr("Perceptual")); ! ComboBoxIntent -> insertItem((ComboBoxIntent->count()+1), QString::fromLocal8Bit("(*) ") + tr("Relative colorimetric")); ! ComboBoxIntent -> insertItem((ComboBoxIntent->count()+1), QString::fromLocal8Bit("(*) ") + tr("Saturation")); ! ComboBoxIntent -> insertItem((ComboBoxIntent->count()+1), QString::fromLocal8Bit("(*) ") + tr("Absolute")); /* TRANSLATOR White point text for Profile Checker information screen */ *************** *** 609,613 **** ResetMeasurement(TRUE); ! cmsxPCollBuildMeasurement(&m, ReferenceSheet, MeasurementSheet, PATCH_HAS_XYZ|PATCH_HAS_RGB); } --- 608,612 ---- ResetMeasurement(TRUE); ! cmsxPCollBuildMeasurement(&m, ReferenceSheet, MeasurementSheet, PATCH_HAS_XYZ|PATCH_HAS_RGB); } *************** *** 629,635 **** ComboBoxIntent -> clear(); ! ComboBoxIntent -> insertItem(104, SupportedIntent(hProfile, INTENT_PERCEPTUAL)); ! ComboBoxIntent -> insertItem(105, SupportedIntent(hProfile, INTENT_RELATIVE_COLORIMETRIC)); ! ComboBoxIntent -> insertItem(106, SupportedIntent(hProfile, INTENT_SATURATION)); cmsCloseProfile(hProfile); --- 628,634 ---- ComboBoxIntent -> clear(); ! ComboBoxIntent -> insertItem((ComboBoxIntent->count()+1), SupportedIntent(hProfile, INTENT_PERCEPTUAL)); ! ComboBoxIntent -> insertItem((ComboBoxIntent->count()+1), SupportedIntent(hProfile, INTENT_RELATIVE_COLORIMETRIC)); ! ComboBoxIntent -> insertItem((ComboBoxIntent->count()+1), SupportedIntent(hProfile, INTENT_SATURATION)); cmsCloseProfile(hProfile); |