2016-03-23 Fred Gleason <fredg@paravelsystems.com>

* Added a 'CART.USE_WEIGHTING' field to the database.
	* Added a 'CUTS.PLAY_ORDER' field to the database.
	* Incremented the database version to 254.
	* Added a 'Schedule Cuts By' control to the Edit Cart dialog in
	'rdlibrary/edit_cart.cpp' and 'rdlibrary/edit_cart.h'.
	* Added 'RDCart::useWeighting()' and 'RDCart::setUseWeighting()'
	methods in 'lib/rdcart.cpp' and 'lib/rdcart.h'.
	* Added 'RDCut::playOrder()' and 'RDCut::setPlayOrder()' methods
	in 'lib/rdcut.cpp' and 'lib/rdcut.h'.
This commit is contained in:
Fred Gleason
2016-03-24 11:38:21 -04:00
parent 422dff4a15
commit 6d168b0a8f
23 changed files with 527 additions and 89 deletions

View File

@@ -50,7 +50,8 @@ class RecordCut : public QDialog
{
Q_OBJECT
public:
RecordCut(RDCart *cart,QString cut,QWidget *parent=0,const char *name=0);
RecordCut(RDCart *cart,QString cut,bool use_weight,QWidget *parent=0,
const char *name=0);
~RecordCut();
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
@@ -141,6 +142,7 @@ class RecordCut : public QDialog
bool is_closing;
QCheckBox *rec_evergreen_box;
QLabel *rec_evergreen_label;
bool rec_use_weighting;
};