X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fscmwidget.h;fp=src%2Fscmwidget.h;h=6081f7127a1bd85837b064480693ea8dbae08695;hb=6df1a447a1fa1b9e51fd177a806f910813657b09;hp=0000000000000000000000000000000000000000;hpb=f3116511d09acfd5b32d3412c82c4337d89f2ad9;p=schematic diff --git a/src/scmwidget.h b/src/scmwidget.h new file mode 100644 index 0000000..6081f71 --- /dev/null +++ b/src/scmwidget.h @@ -0,0 +1,49 @@ +// +// scmwidget.h: Main widget page container +// +// by James Hammons +// (C) 2012 Underground Software +// + +#ifndef __SCMWIDGET_H__ +#define __SCMWIDGET_H__ + +#include +#include "vendorlevelwidget.h" + +class SCMWidget: public QWidget +{ + public: + SCMWidget(QWidget * parent = 0); + +// protected: +// void keyPressEvent(QKeyEvent *); + + public: + QTreeView * purchaseOrders; + QLabel * vendorName; + QLabel * ndaSigned; + QTabWidget * vendorAddress; + QTabWidget * vendorContact; + QListWidget * vendorClass; + QLabel * username; + VendorLevelWidget * vendorLevel; + QListWidget * alerts; + QListWidget * notes; + + private: + QToolButton * nextVendorButton; + QToolButton * previousVendorButton; + QPushButton * editVendor; + QPushButton * addVendor; + QPushButton * addLocation; + QPushButton * addContact; + QPushButton * createAlert; + QPushButton * createNote; + QPushButton * showOpen; + QPushButton * showClosed; + QPushButton * showAll; + QPushButton * createPO; +}; + +#endif // __SCMWIDGET_H__