You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			34 lines
		
	
	
		
			588 B
		
	
	
	
		
			C++
		
	
			
		
		
	
	
			34 lines
		
	
	
		
			588 B
		
	
	
	
		
			C++
		
	
#ifndef COMMODITYFORM_H
 | 
						|
#define COMMODITYFORM_H
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
#include <autoform.h>
 | 
						|
#include "data/commoditydata.h"
 | 
						|
 | 
						|
namespace Ui {
 | 
						|
class CommodityForm;
 | 
						|
}
 | 
						|
 | 
						|
class CommodityForm : public AutoForm<CommodityData>
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
    explicit CommodityForm(QWidget *parent = nullptr);
 | 
						|
    ~CommodityForm() override;
 | 
						|
 | 
						|
private:
 | 
						|
    Ui::CommodityForm *ui;
 | 
						|
 | 
						|
    bool m_codeAsNumber;
 | 
						|
 | 
						|
    // FormBinder interface
 | 
						|
protected:
 | 
						|
    void registerCombos() override;
 | 
						|
    void onShow() override;
 | 
						|
private slots:
 | 
						|
    void on_code_textChanged(const QString &text);
 | 
						|
};
 | 
						|
 | 
						|
#endif // COMMODITYFORM_H
 |