Compare commits
3 commits
cdc737a823
...
715c8252d8
Author | SHA1 | Date | |
---|---|---|---|
715c8252d8 | |||
52c4f39e23 | |||
593ae8531c |
5 changed files with 40 additions and 6 deletions
BIN
manual/Benutzerhandbuch.odt
Normal file
BIN
manual/Benutzerhandbuch.odt
Normal file
Binary file not shown.
BIN
manual/Benutzerhandbuch.pdf
Normal file
BIN
manual/Benutzerhandbuch.pdf
Normal file
Binary file not shown.
|
@ -76,6 +76,8 @@ MainWindow::MainWindow()
|
|||
&MainWindow::onExportSalesJsonActionTriggered);
|
||||
connect(ui_.importSalesJsonAction, &QAction::triggered, this,
|
||||
&MainWindow::onImportSalesJsonActionTriggered);
|
||||
|
||||
readGeometry();
|
||||
}
|
||||
|
||||
void MainWindow::onActionEditSellerTriggered()
|
||||
|
@ -353,3 +355,29 @@ void MainWindow::onImportSalesJsonActionTriggered()
|
|||
}
|
||||
setSaleModel();
|
||||
}
|
||||
|
||||
void MainWindow::writeGeometry()
|
||||
{
|
||||
QSettings settings;
|
||||
|
||||
settings.beginGroup("mainwindow");
|
||||
settings.setValue("size", size());
|
||||
settings.setValue("pos", pos());
|
||||
settings.endGroup();
|
||||
}
|
||||
|
||||
void MainWindow::readGeometry()
|
||||
{
|
||||
QSettings settings;
|
||||
|
||||
settings.beginGroup("mainwindow");
|
||||
resize(settings.value("size", QSize(800, 600)).toSize());
|
||||
move(settings.value("pos", QPoint(200, 200)).toPoint());
|
||||
settings.endGroup();
|
||||
}
|
||||
|
||||
void MainWindow::closeEvent(QCloseEvent* event)
|
||||
{
|
||||
writeGeometry();
|
||||
event->accept();
|
||||
}
|
|
@ -6,6 +6,7 @@
|
|||
#include <marketplace.h>
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QtGui/QCloseEvent>
|
||||
|
||||
#include <memory>
|
||||
|
||||
|
@ -29,6 +30,9 @@ class MainWindow : public QMainWindow
|
|||
void onAboutQt();
|
||||
void onAbout();
|
||||
|
||||
protected:
|
||||
virtual void closeEvent(QCloseEvent* event) override;
|
||||
|
||||
private:
|
||||
void onActionEditSellerTriggered();
|
||||
void onSellerNoEditCheckSellerNo();
|
||||
|
@ -39,6 +43,8 @@ class MainWindow : public QMainWindow
|
|||
void onExportSalesJsonActionTriggered();
|
||||
void onImportSalesJsonActionTriggered();
|
||||
void setSaleModel();
|
||||
void writeGeometry();
|
||||
void readGeometry();
|
||||
|
||||
Ui::MainWindow ui_;
|
||||
std::unique_ptr<Marketplace> marketplace_;
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
</font>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Geben Sie hier die Verkäufernummer ein</string>
|
||||
<string>Geben Sie hier die Verkäufernummer ein.</string>
|
||||
</property>
|
||||
<property name="statusTip">
|
||||
<string>Geben Sie hier die Verkäufernummer ein</string>
|
||||
|
@ -471,27 +471,27 @@ drucken</string>
|
|||
</action>
|
||||
<action name="exportSellerJsonAction">
|
||||
<property name="text">
|
||||
<string>Exportieren (JSON)</string>
|
||||
<string>Exportieren für andere Kasse (JSON)</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="importSellerExcelAction">
|
||||
<property name="text">
|
||||
<string>Aus Excel-Datei</string>
|
||||
<string>Aus Excel-Datei (initial)</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="importSellerJsonAction">
|
||||
<property name="text">
|
||||
<string>Aus JSON-Datei</string>
|
||||
<string>Aus JSON-Datei (von anderer Kasse)</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="exportSalesJsonAction">
|
||||
<property name="text">
|
||||
<string>Exportieren (JSON)</string>
|
||||
<string>Exportieren für andere Kasse (JSON)</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="importSalesJsonAction">
|
||||
<property name="text">
|
||||
<string>Importieren (JSON)</string>
|
||||
<string>Importieren von anderer Kasse (JSON)</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
|
|
Loading…
Reference in a new issue