Tizen 2.1 base
[platform/upstream/hplip.git] / ui / colorcal4form.py
1 # -*- coding: utf-8 -*-
2 #
3 # (c) Copyright 2001-2008 Hewlett-Packard Development Company, L.P.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # Author: Don Welch
20 #
21
22 # Std Lib
23
24 # Local
25 from base.g import *
26 from ui_utils import load_pixmap
27
28 # Qt
29 from qt import *
30 from colorcal4form_base import ColorCal4Form_base
31
32
33 class ColorCal4Form(ColorCal4Form_base):
34
35     def __init__(self, parent=None, name=None, modal=0, fl=0):
36         ColorCal4Form_base.__init__(self, parent, name, modal, fl)
37         
38         self.gray_plot_png.setPixmap(load_pixmap('type4_gray_patch', 'other'))
39         self.color_plot_png.setPixmap(load_pixmap('type4_color_patch', 'other'))
40         self.values = [0, 0, 0, 0]
41
42     def GrayLetterComboBox_highlighted(self,a0):
43         self.values[0] = ord(str(a0)) - ord('A')
44
45     def GrayNumberComboBox_highlighted(self,a0):
46         self.values[1] = int(str(a0))-1
47
48     def ColorLetterComboBox_highlighted(self,a0):
49         self.values[2] = ord(str(a0)) - ord('P')
50
51     def ColorNumberComboBox_highlighted(self,a0):
52         self.values[3] = int(str(a0))-1
53
54     def UseDefaultsButton_clicked(self):
55         self.values = [-1, -1, -1, -1]
56         self.accept()