Mark BatchQueuePanel implementation functions as private

This commit is contained in:
George Hilliard
2018-10-26 00:20:02 -05:00
parent fef2f73aa7
commit 52c943ca0e

View File

@@ -60,22 +60,23 @@ public:
void init (RTWindow* parent); void init (RTWindow* parent);
void addBatchQueueJobs(const std::vector<BatchQueueEntry*>& entries , bool head = false); void addBatchQueueJobs(const std::vector<BatchQueueEntry*>& entries , bool head = false);
void saveOptions ();
bool handleShortcutKey (GdkEventKey* event);
// batchqueuelistener interface // batchqueuelistener interface
void queueSizeChanged(int qsize, bool queueEmptied, bool queueError, const Glib::ustring& queueErrorMessage); void queueSizeChanged(int qsize, bool queueEmptied, bool queueError, const Glib::ustring& queueErrorMessage);
bool canStartNext(); bool canStartNext();
private:
void startBatchProc (); void startBatchProc ();
void stopBatchProc (); void stopBatchProc ();
void startOrStopBatchProc(); void startOrStopBatchProc();
void saveOptions ();
void pathFolderChanged (); void pathFolderChanged ();
void pathFolderButtonPressed (); void pathFolderButtonPressed ();
void formatChanged(const Glib::ustring& format) override; void formatChanged(const Glib::ustring& format) override;
void updateTab (int qsize, int forceOrientation = 0); // forceOrientation=0: base on options / 1: horizontal / 2: vertical void updateTab (int qsize, int forceOrientation = 0); // forceOrientation=0: base on options / 1: horizontal / 2: vertical
bool handleShortcutKey (GdkEventKey* event);
}; };
#endif #endif