mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-27 13:34:19 -04:00
Add HEIGHTPERROW_MODE_input mode flag (#204)
backend_qt: add encodedWidth, encodedRows DBAR_EXPSTK: add max rows option (option_3) CODE16K/CODE49: add min rows option (option_1) GUI: HIBC xxx -> HIBC
This commit is contained in:
parent
96cf5aa668
commit
e14d9e99d5
36 changed files with 2453 additions and 608 deletions
|
@ -22,12 +22,15 @@
|
|||
#include <QGraphicsItem>
|
||||
#include <QMainWindow>
|
||||
#include <QGraphicsScene>
|
||||
#include <QButtonGroup>
|
||||
|
||||
#include "ui_mainWindow.h"
|
||||
#include "barcodeitem.h"
|
||||
|
||||
class QLabel;
|
||||
class QShortcut;
|
||||
class QDoubleSpinBox;
|
||||
class QPushButton;
|
||||
|
||||
class MainWindow : public QWidget, private Ui::mainWindow
|
||||
{
|
||||
|
@ -82,6 +85,9 @@ public slots:
|
|||
|
||||
void copy_to_clipboard_errtxt();
|
||||
|
||||
void height_per_row_disable();
|
||||
void height_per_row_default();
|
||||
|
||||
void guard_reset_upcean();
|
||||
void guard_reset_upca();
|
||||
|
||||
|
@ -160,6 +166,10 @@ private:
|
|||
QAction *m_helpAct;
|
||||
QAction *m_quitAct;
|
||||
QAction *m_copyErrtxtAct;
|
||||
QLabel *m_lblHeightPerRow;
|
||||
QDoubleSpinBox *m_spnHeightPerRow;
|
||||
QPushButton *m_btnHeightPerRowDisable;
|
||||
QPushButton *m_btnHeightPerRowDefault;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue