Commit 1926f363 by Carwyn

1. 设置界面代码上传

parent ad13983a
...@@ -3,8 +3,12 @@ ...@@ -3,8 +3,12 @@
#include <fmp_logger_i.h> #include <fmp_logger_i.h>
#include <ctkServiceReference.h> #include <ctkServiceReference.h>
#include <ctkPluginContext.h> #include <ctkPluginContext.h>
#include "ui/window.h"
#include <QDebug> #include <QDebug>
#ifdef Q_OS_WIN
#undef StartService
#endif
/** /**
* @brief The FMPSettings class * @brief The FMPSettings class
...@@ -72,6 +76,10 @@ int FMPSettingsPrivate::Init() ...@@ -72,6 +76,10 @@ int FMPSettingsPrivate::Init()
if (!_sets) { if (!_sets) {
_sets = new QSettings(_ctx->getProperty(FMP_PROPKEY_CFG).toString(), QSettings::IniFormat); _sets = new QSettings(_ctx->getProperty(FMP_PROPKEY_CFG).toString(), QSettings::IniFormat);
} }
else {
FMPSettingsWindow * set_dlg = new FMPSettingsWindow;
set_dlg->show();
}
return FMP_SUCCESS; return FMP_SUCCESS;
} }
......
...@@ -4,16 +4,18 @@ ...@@ -4,16 +4,18 @@
# #
#------------------------------------------------- #-------------------------------------------------
QT -= gui QT += widgets
TEMPLATE = lib TEMPLATE = lib
SOURCES += fmp_settings.cpp \ SOURCES += fmp_settings.cpp \
fmp_settings_plugin.cpp fmp_settings_plugin.cpp \
ui/window.cpp
HEADERS += fmp_settings.h \ HEADERS += fmp_settings.h \
fmp_settings_i.h \ fmp_settings_i.h \
fmp_settings_plugin_p.h \ fmp_settings_plugin_p.h \
fmp_settings_def.h fmp_settings_def.h \
ui/window.h
unix { unix {
target.path = /usr/lib target.path = /usr/lib
...@@ -28,6 +30,7 @@ TARGET = $${TARGET}_$${VER} ...@@ -28,6 +30,7 @@ TARGET = $${TARGET}_$${VER}
#Header path #Header path
INCLUDEPATH += $$PWD/../include/ctk \ INCLUDEPATH += $$PWD/../include/ctk \
+= $$PWD/../include/interface \ += $$PWD/../include/interface \
+= $$PWD/../include/window
#Library path #Library path
LIBS += -L$$PWD/../lib LIBS += -L$$PWD/../lib
...@@ -44,12 +47,18 @@ CONFIG(debug, debug|release) { ...@@ -44,12 +47,18 @@ CONFIG(debug, debug|release) {
# #
RESOURCES += \ RESOURCES += \
res/$${ORIGIN_TARGET}.qrc res/$${ORIGIN_TARGET}.qrc \
res/images.qrc
win32 { win32 {
RC_FILE += res/$${ORIGIN_TARGET}.rc RC_FILE += res/$${ORIGIN_TARGET}.rc
system($$PWD/../fmprc.bat $$PWD/version.h $$ORIGIN_TARGET) system($$PWD/../fmprc.bat $$PWD/version.h $$ORIGIN_TARGET)
LIBS += -luser32
} }
else { else {
system($$PWD/../fmprc.sh $$PWD/version.h $$ORIGIN_TARGET) system($$PWD/../fmprc.sh $$PWD/version.h $$ORIGIN_TARGET)
} }
FORMS += \
ui/window.ui
<RCC>
<qresource prefix="/">
<file>images/arrow_down.png</file>
</qresource>
</RCC>
#include "window.h"
#include "ui_window.h"
FMPSettingsWindow::FMPSettingsWindow(QWidget *parent) :
FMPWindow(parent),
ui(new Ui::FMPSettingsWindow)
{
ui->setupUi(this);
connect(ui->btn_close, SIGNAL(clicked(bool)), SLOT(close()));
}
FMPSettingsWindow::~FMPSettingsWindow()
{
delete ui;
}
#ifndef FMP_SETS_DLG_H
#define FMP_SETS_DLG_H
#include <fmp_window.hpp>
#include <QWidget>
namespace Ui {
class FMPSettingsWindow;
}
class FMPSettingsWindow : public FMPWindow
{
Q_OBJECT
public:
explicit FMPSettingsWindow(QWidget *parent = 0);
~FMPSettingsWindow();
private:
Ui::FMPSettingsWindow *ui;
};
#endif // FMP_SETS_DLG_H
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>FMPSettingsWindow</class>
<widget class="QWidget" name="FMPSettingsWindow">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>786</width>
<height>624</height>
</rect>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="windowTitle">
<string>非码设置</string>
</property>
<property name="styleSheet">
<string notr="true">#Settings
{
background-color: rgb(255, 255, 255);
border: 1 solid silver;
}
#caption
{
min-height: 55px; max-height: 55px;
background: rgb(56, 56, 64);
}
#title
{
font: normal 22px &quot;Microsoft YaHei&quot;;
color: rgb(255, 255, 255);
}
#btn_close
{
background: transparent;
border: 0;
image: url(:/img/fm-icon_close_02.png);
}
#btn_close:pressed
{
padding: 1 0 0 2;
}
#tab_group
{
min-width: 140; max-width: 140;
background-color: rgb(249, 249, 249);
}
#tab_general, #tab_pay, #tab_takeout, #tab_vip
{
min-height: 60; max-height: 60;
border: none;
border-radius: 0px;
background-color: rgb(249, 249, 249);
font: normal 20px &quot;Microsoft YaHei&quot;;
color: rgb(100, 100, 100);
}
#tab_general:pressed, #tab_pay:pressed, #tab_takeout:pressed, #tab_vip:pressed
{
border-radius: 0px;
background-color: rgb(233, 239, 251);
}
#tab_general:checked, #tab_pay:checked, #tab_takeout:checked, #tab_vip:checked
{
background-color: rgb(233, 239, 251);
border-right: 2 solid rgb(93,144,237);
padding: 0 0 0 2;
}
#general, #pay, #takeout, #vip
{
background-color: rgb(255, 255, 255);
}
#general QLabel, #general QCheckBox
{
font: normal 16px &quot;微软雅黑&quot;;
min-height: 28px;
color: rgb(99,148,235) ;
}
QPushButton
{
background: rgb(93,144,237);
font: normal 16px &quot;Microsoft YaHei&quot;;
color: white;
border-radius:15px;
}
QPushButton:pressed
{
padding: 2 0 0 2;
}
QLineEdit
{
background-color: rgb(255, 255, 255);
border:1px solid rgb(99, 148, 235);
font: normal 16px &quot;微软雅黑&quot;;
min-height: 30px; max-height: 30px;
color: rgb(100,100,100);
}
QLineEdit:disabled
{
border: none;
color: rgb(60, 60, 60);
}
QCheckBox
{
min-height: 28px; max-height: 28px;
}
QGroupBox
{
font: normal 16px &quot;微软雅黑&quot;;
color: gray;
border: 0 solid rgb(200, 200, 200);
margin: 24 0 0 0;
background-color: rgb(233, 239, 251);
}
QGroupBox::title
{
subcontrol-origin: margin;
subcontrol-position: left top;
padding: 0 10;
}
QComboBox {
border:1px solid rgb(99, 148, 235);
font: normal 16px &quot;微软雅黑&quot;;
color: rgb(100,100,100);
}
QComboBox QAbstractItemView
{
selection-background-color: rgb(160, 160, 160);
selection-color: white;
}
QComboBox QAbstractItemView::item
{
min-height: 36px;
}
QComboBox:!editable, QComboBox::drop-down:editable {
background: white;
padding-left: 6px;
}
QComboBox:!editable:on, QComboBox::drop-down:editable:on {
background: rgb(240,240,240);
}
QComboBox::drop-down
{
border-left: 1 solid rgb(230,230,230);
width: 18px;
}
QComboBox::down-arrow
{
image: url(:/images/arrow_down.png);
}
</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>1</number>
</property>
<property name="topMargin">
<number>1</number>
</property>
<property name="rightMargin">
<number>1</number>
</property>
<property name="bottomMargin">
<number>1</number>
</property>
<item>
<widget class="QWidget" name="caption" native="true">
<layout class="QHBoxLayout" name="horizontalLayout">
<property name="spacing">
<number>0</number>
</property>
<property name="leftMargin">
<number>12</number>
</property>
<property name="topMargin">
<number>0</number>
</property>
<property name="rightMargin">
<number>8</number>
</property>
<property name="bottomMargin">
<number>0</number>
</property>
<item>
<widget class="QLabel" name="title">
<property name="text">
<string>设置</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="btn_close">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumSize">
<size>
<width>0</width>
<height>0</height>
</size>
</property>
<property name="maximumSize">
<size>
<width>16777215</width>
<height>16777215</height>
</size>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="styleSheet">
<string notr="true"/>
</property>
<property name="text">
<string/>
</property>
</widget>
</item>
</layout>
</widget>
</item>
<item>
<layout class="QHBoxLayout" name="content_layout">
<property name="spacing">
<number>0</number>
</property>
<item>
<widget class="QWidget" name="tab_group" native="true">
<layout class="QVBoxLayout" name="tab_layout">
<property name="spacing">
<number>0</number>
</property>
<property name="sizeConstraint">
<enum>QLayout::SetDefaultConstraint</enum>
</property>
<property name="leftMargin">
<number>1</number>
</property>
<property name="topMargin">
<number>1</number>
</property>
<property name="rightMargin">
<number>1</number>
</property>
<property name="bottomMargin">
<number>1</number>
</property>
<item>
<widget class="QPushButton" name="tab_general">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="text">
<string>通用</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="checked">
<bool>true</bool>
</property>
<property name="autoExclusive">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="tab_pay">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="text">
<string>支付</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="autoExclusive">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="tab_takeout">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="text">
<string>外卖</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="autoExclusive">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="tab_vip">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="text">
<string>会员</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="autoExclusive">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
</layout>
</widget>
</item>
<item>
<widget class="QWidget" name="content" native="true">
<widget class="QWidget" name="general" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>642</width>
<height>565</height>
</rect>
</property>
<widget class="QGroupBox" name="log_group">
<property name="geometry">
<rect>
<x>30</x>
<y>340</y>
<width>581</width>
<height>141</height>
</rect>
</property>
<property name="title">
<string>日志</string>
</property>
<widget class="QLabel" name="label_loglevel">
<property name="geometry">
<rect>
<x>20</x>
<y>90</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>日志等级:</string>
</property>
</widget>
<widget class="QLineEdit" name="edt_logsize">
<property name="geometry">
<rect>
<x>330</x>
<y>90</y>
<width>111</width>
<height>32</height>
</rect>
</property>
</widget>
<widget class="QComboBox" name="select_loglevel">
<property name="geometry">
<rect>
<x>120</x>
<y>90</y>
<width>111</width>
<height>32</height>
</rect>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="frame">
<bool>true</bool>
</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>
<item>
<property name="text">
<string>关闭</string>
</property>
</item>
</widget>
<widget class="QLabel" name="label_logsize">
<property name="geometry">
<rect>
<x>250</x>
<y>90</y>
<width>81</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>日志大小:</string>
</property>
</widget>
<widget class="QLabel" name="label_path">
<property name="geometry">
<rect>
<x>20</x>
<y>40</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>日志路径:</string>
</property>
</widget>
<widget class="QLabel" name="label_unit">
<property name="geometry">
<rect>
<x>450</x>
<y>90</y>
<width>31</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>MB</string>
</property>
</widget>
<widget class="QLineEdit" name="edt_logpath">
<property name="geometry">
<rect>
<x>120</x>
<y>40</y>
<width>321</width>
<height>32</height>
</rect>
</property>
</widget>
<widget class="QPushButton" name="btn_logpath">
<property name="geometry">
<rect>
<x>460</x>
<y>40</y>
<width>88</width>
<height>30</height>
</rect>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="text">
<string>浏览</string>
</property>
</widget>
</widget>
<widget class="QComboBox" name="select_printer">
<property name="geometry">
<rect>
<x>150</x>
<y>500</y>
<width>321</width>
<height>32</height>
</rect>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<item>
<property name="text">
<string>系统默认</string>
</property>
</item>
</widget>
<widget class="QLabel" name="label_printer">
<property name="geometry">
<rect>
<x>50</x>
<y>500</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>打印机:</string>
</property>
</widget>
<widget class="QGroupBox" name="plugin_group">
<property name="geometry">
<rect>
<x>30</x>
<y>210</y>
<width>581</width>
<height>121</height>
</rect>
</property>
<property name="title">
<string>插件</string>
</property>
<widget class="QCheckBox" name="switch_animation">
<property name="geometry">
<rect>
<x>20</x>
<y>90</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>启用动画</string>
</property>
</widget>
<widget class="QLineEdit" name="edt_pluginpath">
<property name="geometry">
<rect>
<x>120</x>
<y>40</y>
<width>321</width>
<height>32</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label_pluginpath">
<property name="geometry">
<rect>
<x>20</x>
<y>40</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>插件路径:</string>
</property>
</widget>
<widget class="QPushButton" name="btn_pluginpath">
<property name="geometry">
<rect>
<x>460</x>
<y>40</y>
<width>88</width>
<height>30</height>
</rect>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="text">
<string>浏览</string>
</property>
</widget>
</widget>
<widget class="QGroupBox" name="user_group">
<property name="geometry">
<rect>
<x>30</x>
<y>10</y>
<width>581</width>
<height>191</height>
</rect>
</property>
<property name="title">
<string>用户</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter</set>
</property>
<property name="flat">
<bool>false</bool>
</property>
<property name="checkable">
<bool>false</bool>
</property>
<widget class="QLineEdit" name="edt_storeid">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>420</x>
<y>40</y>
<width>141</width>
<height>32</height>
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLineEdit" name="edt_posid">
<property name="enabled">
<bool>true</bool>
</property>
<property name="geometry">
<rect>
<x>420</x>
<y>90</y>
<width>141</width>
<height>32</height>
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLineEdit" name="edt_loginsvr">
<property name="geometry">
<rect>
<x>120</x>
<y>140</y>
<width>321</width>
<height>32</height>
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLineEdit" name="edt_pwd">
<property name="geometry">
<rect>
<x>120</x>
<y>90</y>
<width>191</width>
<height>32</height>
</rect>
</property>
<property name="echoMode">
<enum>QLineEdit::Password</enum>
</property>
</widget>
<widget class="QLabel" name="label_loginsvr">
<property name="geometry">
<rect>
<x>20</x>
<y>140</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>登录服务器:</string>
</property>
</widget>
<widget class="QLabel" name="label_account">
<property name="geometry">
<rect>
<x>20</x>
<y>40</y>
<width>72</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>账 号:</string>
</property>
</widget>
<widget class="QCheckBox" name="switch_autologin">
<property name="geometry">
<rect>
<x>460</x>
<y>140</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>自动登录</string>
</property>
<property name="iconSize">
<size>
<width>20</width>
<height>20</height>
</size>
</property>
</widget>
<widget class="QLineEdit" name="edt_account">
<property name="geometry">
<rect>
<x>120</x>
<y>40</y>
<width>191</width>
<height>32</height>
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QLabel" name="label_pwd">
<property name="geometry">
<rect>
<x>20</x>
<y>90</y>
<width>72</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>密 码:</string>
</property>
</widget>
<widget class="QLabel" name="label_posid">
<property name="geometry">
<rect>
<x>330</x>
<y>90</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>机器编号:</string>
</property>
</widget>
<widget class="QLabel" name="label_storeid">
<property name="geometry">
<rect>
<x>330</x>
<y>40</y>
<width>81</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>门店编号:</string>
</property>
</widget>
</widget>
<widget class="QPushButton" name="btn_testprint">
<property name="geometry">
<rect>
<x>490</x>
<y>500</y>
<width>88</width>
<height>30</height>
</rect>
</property>
<property name="cursor">
<cursorShape>PointingHandCursor</cursorShape>
</property>
<property name="text">
<string>打印测试</string>
</property>
</widget>
<zorder>user_group</zorder>
<zorder>log_group</zorder>
<zorder>select_printer</zorder>
<zorder>label_printer</zorder>
<zorder>plugin_group</zorder>
<zorder>btn_testprint</zorder>
</widget>
<widget class="QWidget" name="pay" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>642</width>
<height>565</height>
</rect>
</property>
<widget class="QLabel" name="label_2">
<property name="geometry">
<rect>
<x>40</x>
<y>30</y>
<width>111</width>
<height>16</height>
</rect>
</property>
<property name="text">
<string/>
</property>
</widget>
<widget class="QCheckBox" name="checkBox">
<property name="geometry">
<rect>
<x>40</x>
<y>60</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>交易转发</string>
</property>
</widget>
<widget class="QLabel" name="label_6">
<property name="geometry">
<rect>
<x>40</x>
<y>120</y>
<width>91</width>
<height>16</height>
</rect>
</property>
<property name="text">
<string>支付服务器:</string>
</property>
</widget>
<widget class="QLineEdit" name="lineEdit_4">
<property name="geometry">
<rect>
<x>140</x>
<y>120</y>
<width>113</width>
<height>32</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label_7">
<property name="geometry">
<rect>
<x>40</x>
<y>90</y>
<width>91</width>
<height>16</height>
</rect>
</property>
<property name="text">
<string>转发服务器:</string>
</property>
</widget>
<widget class="QLineEdit" name="lineEdit_5">
<property name="geometry">
<rect>
<x>140</x>
<y>90</y>
<width>113</width>
<height>32</height>
</rect>
</property>
</widget>
</widget>
<widget class="QWidget" name="takeout" native="true">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>642</width>
<height>565</height>
</rect>
</property>
<widget class="QLabel" name="label_8">
<property name="geometry">
<rect>
<x>10</x>
<y>80</y>
<width>91</width>
<height>16</height>
</rect>
</property>
<property name="text">
<string>订单服务器</string>
</property>
</widget>
<widget class="QLineEdit" name="lineEdit_6">
<property name="geometry">
<rect>
<x>110</x>
<y>80</y>
<width>113</width>
<height>32</height>
</rect>
</property>
</widget>
<widget class="QCheckBox" name="checkBox_4">
<property name="geometry">
<rect>
<x>20</x>
<y>130</y>
<width>91</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>自动接单</string>
</property>
</widget>
<widget class="QRadioButton" name="radioButton_5">
<property name="geometry">
<rect>
<x>20</x>
<y>200</y>
<width>161</width>
<height>19</height>
</rect>
</property>
<property name="text">
<string>接单后立即打印小票</string>
</property>
</widget>
<widget class="QRadioButton" name="radioButton_6">
<property name="geometry">
<rect>
<x>20</x>
<y>170</y>
<width>191</width>
<height>19</height>
</rect>
</property>
<property name="text">
<string>配送单确认后打印小票</string>
</property>
</widget>
<widget class="QCheckBox" name="checkBox_5">
<property name="geometry">
<rect>
<x>20</x>
<y>240</y>
<width>151</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>入账扣除服务费</string>
</property>
</widget>
<widget class="QCheckBox" name="checkBox_6">
<property name="geometry">
<rect>
<x>20</x>
<y>270</y>
<width>151</width>
<height>28</height>
</rect>
</property>
<property name="text">
<string>入账扣除服务费</string>
</property>
</widget>
</widget>
<zorder>takeout</zorder>
<zorder>pay</zorder>
<zorder>general</zorder>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
<tabstops>
<tabstop>edt_account</tabstop>
<tabstop>edt_pwd</tabstop>
<tabstop>edt_loginsvr</tabstop>
<tabstop>edt_storeid</tabstop>
<tabstop>edt_posid</tabstop>
<tabstop>edt_pluginpath</tabstop>
<tabstop>edt_logpath</tabstop>
<tabstop>select_loglevel</tabstop>
<tabstop>edt_logsize</tabstop>
<tabstop>select_printer</tabstop>
<tabstop>tab_vip</tabstop>
<tabstop>btn_pluginpath</tabstop>
<tabstop>btn_logpath</tabstop>
<tabstop>tab_takeout</tabstop>
<tabstop>tab_pay</tabstop>
<tabstop>tab_general</tabstop>
<tabstop>switch_autologin</tabstop>
<tabstop>btn_close</tabstop>
<tabstop>btn_testprint</tabstop>
<tabstop>checkBox</tabstop>
<tabstop>lineEdit_4</tabstop>
<tabstop>switch_animation</tabstop>
<tabstop>lineEdit_6</tabstop>
<tabstop>checkBox_4</tabstop>
<tabstop>radioButton_5</tabstop>
<tabstop>radioButton_6</tabstop>
<tabstop>checkBox_5</tabstop>
<tabstop>checkBox_6</tabstop>
<tabstop>lineEdit_5</tabstop>
</tabstops>
<resources/>
<connections/>
</ui>
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
#define VER_MINOR 1 #define VER_MINOR 1
#define VER_REVISION 0 #define VER_REVISION 0
#define VER_BUILD 5 #define VER_BUILD 6
//! Convert version numbers to string //! Convert version numbers to string
#define _STR(S) #S #define _STR(S) #S
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment