mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-11-26 07:10:11 +01:00
2018-07-06 Fred Gleason <fredg@paravelsystems.com>
* Added an 'EVENT_LINES' table to the database. * Incremented the database version to 290. * Removed the 'RDEvent::preimportTableName()' method. * Removed the 'RDEvent::postimportTableName()' method.
This commit is contained in:
75
lib/rdeventimportlist.h
Normal file
75
lib/rdeventimportlist.h
Normal file
@@ -0,0 +1,75 @@
|
||||
// rdeventimportlist.h
|
||||
//
|
||||
// Abstract an rdlogmanager(1) Import List
|
||||
//
|
||||
// (C) Copyright 2018 Fred Gleason <fredg@paravelsystems.com>
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License version 2 as
|
||||
// published by the Free Software Foundation.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public
|
||||
// License along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
|
||||
#ifndef RDEVENTIMPORTLIST_H
|
||||
#define RDEVENTIMPORTLIST_H
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include <rdlog_line.h>
|
||||
|
||||
class RDEventImportItem
|
||||
{
|
||||
public:
|
||||
RDEventImportItem();
|
||||
RDLogLine::Type eventType() const;
|
||||
void setEventType(RDLogLine::Type type);
|
||||
unsigned cartNumber() const;
|
||||
void setCartNumber(unsigned cartnum);
|
||||
RDLogLine::TransType transType() const;
|
||||
void setTransType(RDLogLine::TransType type);
|
||||
QString markerComment() const;
|
||||
void setMarkerComment(const QString &str);
|
||||
|
||||
private:
|
||||
RDLogLine::Type event_type;
|
||||
unsigned event_cart_number;
|
||||
RDLogLine::TransType event_trans_type;
|
||||
QString event_marker_comment;
|
||||
};
|
||||
|
||||
|
||||
class RDEventImportList
|
||||
{
|
||||
public:
|
||||
enum ImportType {PreImport=0,PostImport=1};
|
||||
RDEventImportList();
|
||||
QString eventName() const;
|
||||
void setEventName(const QString &str);
|
||||
ImportType type() const;
|
||||
void setType(ImportType type);
|
||||
int size();
|
||||
RDEventImportItem *item(int n) const;
|
||||
void takeItem(int before_line,RDEventImportItem *item);
|
||||
void removeItem(int n);
|
||||
void moveItem(int from_line,int to_line);
|
||||
void load();
|
||||
void save() const;
|
||||
void clear();
|
||||
|
||||
private:
|
||||
QString list_event_name;
|
||||
ImportType list_type;
|
||||
std::vector<RDEventImportItem *> list_items;
|
||||
};
|
||||
|
||||
|
||||
#endif // RDEVENTIMPORTLIST_H
|
||||
|
||||
Reference in New Issue
Block a user