123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui version="4.0">
- <class>imageconverttool</class>
- <widget class="QDialog" name="imageconverttool">
- <property name="geometry">
- <rect>
- <x>0</x>
- <y>0</y>
- <width>400</width>
- <height>165</height>
- </rect>
- </property>
- <property name="windowTitle">
- <string>Dialog</string>
- </property>
- <layout class="QGridLayout" name="gridLayout">
- <item row="0" column="0">
- <widget class="QLabel" name="label">
- <property name="maximumSize">
- <size>
- <width>80</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="sizeIncrement">
- <size>
- <width>80</width>
- <height>0</height>
- </size>
- </property>
- <property name="text">
- <string>转换类型:</string>
- </property>
- </widget>
- </item>
- <item row="0" column="1">
- <widget class="QComboBox" name="comboBox">
- <property name="minimumSize">
- <size>
- <width>0</width>
- <height>35</height>
- </size>
- </property>
- <property name="styleSheet">
- <string notr="true">QComboBox QAbstractItemView
- {
- border:0px;
- outline:none;
- color: rgb(0, 0, 0);
- background: rgb(255, 255, 255);
- }
- QComboBox
- {
- border:0px;
- border-bottom:3px solid rgb(33, 150, 243);
- background: transparent;
- }
- QComboBox QAbstractItemView::item
- {
- height: 35px;
- }
- QComboBox QAbstractItemView::item:hover
- {
- background: rgb(230, 230, 230);
- color: rgb(0, 0, 0);
- }
- QComboBox QAbstractItemView::item:selected
- {
- background: rgb(230, 230, 230);
- color: rgb(0, 0, 0);
- }
- QComboBox::down-arrow
- {
- image: url(:/image/4.png);
- }
- QComboBox::drop-down
- {
- background: transparent;
- }
- </string>
- </property>
- <item>
- <property name="text">
- <string>通用转换比例</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>RGB</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>HSV</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>HSI</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>YUV</string>
- </property>
- </item>
- </widget>
- </item>
- <item row="2" column="1">
- <widget class="QComboBox" name="comboBox_port">
- <property name="minimumSize">
- <size>
- <width>0</width>
- <height>35</height>
- </size>
- </property>
- <property name="styleSheet">
- <string notr="true">QComboBox QAbstractItemView
- {
- border:0px;
- outline:none;
- color: rgb(0, 0, 0);
- background: rgb(255, 255, 255);
- }
- QComboBox
- {
- border:0px;
- border-bottom:3px solid rgb(33, 150, 243);
- background: transparent;
- }
- QComboBox QAbstractItemView::item
- {
- height: 35px;
- }
- QComboBox QAbstractItemView::item:hover
- {
- background: rgb(230, 230, 230);
- color: rgb(0, 0, 0);
- }
- QComboBox QAbstractItemView::item:selected
- {
- background: rgb(230, 230, 230);
- color: rgb(0, 0, 0);
- }
- QComboBox::down-arrow
- {
- image: url(:/image/4.png);
- }
- QComboBox::drop-down
- {
- background: transparent;
- }
- </string>
- </property>
- <item>
- <property name="text">
- <string>第一通道</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>第二通道</string>
- </property>
- </item>
- <item>
- <property name="text">
- <string>第三通道</string>
- </property>
- </item>
- </widget>
- </item>
- <item row="2" column="0">
- <widget class="QLabel" name="label2">
- <property name="maximumSize">
- <size>
- <width>80</width>
- <height>16777215</height>
- </size>
- </property>
- <property name="sizeIncrement">
- <size>
- <width>80</width>
- <height>0</height>
- </size>
- </property>
- <property name="text">
- <string>显示通道:</string>
- </property>
- </widget>
- </item>
- </layout>
- </widget>
- <resources/>
- <connections/>
- </ui>
|