Initial commit (project based on widgets)
This commit is contained in:
353
cellsmonitorpage.ui
Normal file
353
cellsmonitorpage.ui
Normal file
@@ -0,0 +1,353 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>CellsMonitorPage</class>
|
||||
<widget class="QFrame" name="CellsMonitorPage">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>1071</width>
|
||||
<height>755</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Form</string>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">/*QFrame#CellsMonitorPage
|
||||
{
|
||||
background-color: red;
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
QLabel#lbIconLogo
|
||||
{
|
||||
border-image: url(:/images/cubo-verde-logo-white.png) 0 0 0 0 stretch stretch;
|
||||
}
|
||||
|
||||
QLabel#lbHeaderLanguageIcon
|
||||
{
|
||||
border-image: url(:/images/language-russ.png) 0 0 0 0 stretch stretch;
|
||||
}
|
||||
|
||||
|
||||
QPushButton#pushButton,
|
||||
#pushButton_2,
|
||||
#pushButton_3,
|
||||
#pushButton_4,
|
||||
#pushButton_5,
|
||||
#pushButton_6,
|
||||
#pushButton_7,
|
||||
#pushButton_8
|
||||
{
|
||||
color: #FFFFFF;
|
||||
background-color: #009352;
|
||||
border: 0px solid black;
|
||||
background:#009352;
|
||||
text-align: left;
|
||||
padding-left: 85px;
|
||||
font-size:17px;
|
||||
}
|
||||
QPushButton#pushButton
|
||||
{
|
||||
font-size:15px;
|
||||
}
|
||||
|
||||
QPushButton:pressed {
|
||||
background-color: qlineargradient(spread:pad, x1:0, y1:0, x2:0, y2:1, stop:0 rgba(60, 186, 162, 255), stop:1 rgba(98, 211, 162, 255))
|
||||
}
|
||||
|
||||
QPushButton#pushButton:hover,
|
||||
#pushButton_2:hover,
|
||||
#pushButton_3:hover,
|
||||
#pushButton_4:hover,
|
||||
#pushButton_5:hover,
|
||||
#pushButton_6:hover,
|
||||
#pushButton_7:hover,
|
||||
#pushButton_8:hover
|
||||
{
|
||||
background-color: #01673a;
|
||||
}
|
||||
*/
|
||||
|
||||
/*------------------*/
|
||||
/*
|
||||
QGroupBox#gbSerialNumber,
|
||||
#gbConfiguration,
|
||||
#gbSoc
|
||||
{
|
||||
border-radius:10px;
|
||||
border-color: grey;
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
}
|
||||
*/
|
||||
|
||||
/*--------------------------------------*/
|
||||
/*--------------TABLE----------------*/
|
||||
/*--------------------------------------*/
|
||||
|
||||
|
||||
QTableView {
|
||||
background-color: #FFFFFF;
|
||||
alternate-background-color: #282828;
|
||||
border-radius: 10px;
|
||||
/*color: #000000;*/
|
||||
color: #869098;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
QTableView QHeaderView {
|
||||
background-color: #f0f1f4;
|
||||
border: none;
|
||||
/*border-bottom: 2px solid #f0f1f4;*/
|
||||
border-top-left-radius: 10px;
|
||||
border-top-right-radius: 10px;
|
||||
min-height: 70px;
|
||||
/*padding-top: 20px;*/
|
||||
padding-top: 5px;
|
||||
/*padding-right: 15px;*/
|
||||
/*margin-right: 20px;*/
|
||||
/*text-align: center;*/
|
||||
}
|
||||
|
||||
|
||||
QTableView QHeaderView::section {
|
||||
/*
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
color: #8F8F8F;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
*/
|
||||
background-color: #f0f1f4;
|
||||
/*border: 1px solid #e8e9f1;*/
|
||||
border: none;
|
||||
color: #869098;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
/*padding: 0px 0px 0px 35px;*/
|
||||
}
|
||||
|
||||
|
||||
QTableView::item {
|
||||
border: none;
|
||||
/*padding: 0px 35px;*/
|
||||
text-align: center;
|
||||
min-height: 60px;
|
||||
}
|
||||
|
||||
QScrollBar {
|
||||
border-radius: 10px;
|
||||
background: #e8e9f1;
|
||||
}
|
||||
|
||||
QScrollBar::vertical {
|
||||
width: 10px;
|
||||
margin: 75px 0px 0px 0px;
|
||||
}
|
||||
|
||||
/*-----------------------------------*/
|
||||
QScrollBar::sub-page:horizontal {
|
||||
background: #e8e9f1;
|
||||
border-top-left-radius: 9px;
|
||||
border-bottom-left-radius: 9px;
|
||||
}
|
||||
QScrollBar::add-page:horizontal {
|
||||
background: #e8e9f1;
|
||||
border-top-right-radius: 9px;
|
||||
border-bottom-right-radius: 9px;
|
||||
}
|
||||
|
||||
QScrollBar::sub-page:vertical {
|
||||
background: #e8e9f1;
|
||||
border-top-left-radius: 9px;
|
||||
border-top-right-radius: 9px;
|
||||
}
|
||||
QScrollBar::add-page:vertical {
|
||||
background: #e8e9f1;
|
||||
border-bottom-left-radius: 9px;
|
||||
border-bottom-right-radius: 9px;
|
||||
}
|
||||
|
||||
/*-----------------------------------*/
|
||||
QScrollBar::up-arrow,
|
||||
QScrollBar::sub-line,
|
||||
QScrollBar::add-line {
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
}
|
||||
|
||||
QScrollBar::handle {
|
||||
background: #009352;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
|
||||
</string>
|
||||
</property>
|
||||
<widget class="QTableView" name="tableViewRight">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>670</x>
|
||||
<y>90</y>
|
||||
<width>341</width>
|
||||
<height>621</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QTableView" name="tableViewLeft">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>30</x>
|
||||
<y>90</y>
|
||||
<width>331</width>
|
||||
<height>621</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel" name="lbCellsMonitorTableBorderBackground">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>28</x>
|
||||
<y>88</y>
|
||||
<width>985</width>
|
||||
<height>625</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="styleSheet">
|
||||
<string notr="true">/* background-color: #f0fFfF;*/
|
||||
background-color: #e8e9f1;
|
||||
/*grey*/
|
||||
/*#e8e9f1*/
|
||||
/*green*/
|
||||
/*#009352*/
|
||||
|
||||
border: none;
|
||||
border-radius: 10px;
|
||||
/* padding-top: 20px;*/
|
||||
</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QTableView" name="tableViewMiddle">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>350</x>
|
||||
<y>90</y>
|
||||
<width>341</width>
|
||||
<height>621</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel" name="lbCenterTabName">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>30</x>
|
||||
<y>30</y>
|
||||
<width>351</width>
|
||||
<height>41</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="font">
|
||||
<font>
|
||||
<pointsize>26</pointsize>
|
||||
<weight>75</weight>
|
||||
<bold>true</bold>
|
||||
</font>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Монитор ячеек</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLineEdit" name="editCols">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>490</x>
|
||||
<y>50</y>
|
||||
<width>61</width>
|
||||
<height>20</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLineEdit" name="editCells">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>630</x>
|
||||
<y>50</y>
|
||||
<width>61</width>
|
||||
<height>20</height>
|
||||
</rect>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel" name="lbCols">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>410</x>
|
||||
<y>50</y>
|
||||
<width>71</width>
|
||||
<height>16</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>столбцов</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QLabel" name="lbCells">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>570</x>
|
||||
<y>50</y>
|
||||
<width>51</width>
|
||||
<height>16</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>ячеек</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QPushButton" name="pbTestOne">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>440</x>
|
||||
<y>20</y>
|
||||
<width>75</width>
|
||||
<height>23</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Тест 1</string>
|
||||
</property>
|
||||
</widget>
|
||||
<widget class="QPushButton" name="pbTestTwo">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>560</x>
|
||||
<y>20</y>
|
||||
<width>75</width>
|
||||
<height>23</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Тест 2</string>
|
||||
</property>
|
||||
</widget>
|
||||
<zorder>lbCellsMonitorTableBorderBackground</zorder>
|
||||
<zorder>tableViewMiddle</zorder>
|
||||
<zorder>tableViewLeft</zorder>
|
||||
<zorder>tableViewRight</zorder>
|
||||
<zorder>lbCenterTabName</zorder>
|
||||
<zorder>editCols</zorder>
|
||||
<zorder>editCells</zorder>
|
||||
<zorder>lbCols</zorder>
|
||||
<zorder>lbCells</zorder>
|
||||
<zorder>pbTestOne</zorder>
|
||||
<zorder>pbTestTwo</zorder>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
Reference in New Issue
Block a user