-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
5,148 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Copyright (c) 2021 Anna Domini. | ||
Permission is granted to copy, distribute and/or modify this document | ||
under the terms of the GNU Free Documentation License, Version 1.2 | ||
or any later version published by the Free Software Foundation; | ||
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover | ||
Texts. A copy of the license is included in the section entitled "GNU | ||
Free Documentation License". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#ifndef MAINCLASS_H | ||
#define MAINCLASS_H | ||
|
||
|
||
#include <QGridLayout> | ||
#include <QTabWidget> | ||
#include <QFileSystemWatcher> | ||
#include <QTabWidget> | ||
#include <QGridLayout> | ||
#include <TFV_LabelFunctions.h> | ||
#include <QApplication> | ||
#include <QMessageBox> | ||
|
||
using std::vector; | ||
|
||
|
||
|
||
//class MainClass : public QWidget | ||
//{ | ||
// Q_OBJECT | ||
// | ||
// public: | ||
// //MainClass(){} | ||
// MainClass(QWidget* parent=0) | ||
// :QWidget(parent){} | ||
// ~MainClass(){} | ||
// | ||
// void StartViewer(QTabWidget* tabFullList, vector<tab> tabs) | ||
// { | ||
// | ||
// } | ||
// | ||
// public slots: | ||
// void showModified(const QString& str) | ||
// { | ||
// Q_UNUSED(str) | ||
// QMessageBox::information(this,"Directory Modified","Your Directory is modified"); | ||
// } | ||
// | ||
// | ||
//}; | ||
|
||
#endif // MAINCLASS_H |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// summary: new pseudo code (they're just notes) as of february, meant to reorganize the existing code into modules that are easily parsable by main.cpp | ||
|
||
flow: | ||
0. Create a tab array for each text feed file | ||
1. Scan all subdirectories for existing text feed files | ||
2. For each text feed file, create an item vector array | ||
3. Generate a tab for each text feed file | ||
4. Populate each tab with its respective item vector array | ||
5. Done! | ||
|
||
|
||
priorities array | ||
ASAP, URGENT, HIGH, NORMAL/HIGH, NORMAL/MEDIUM, NORMAL/LOW, LOW | ||
|
||
can only use one of those entries in the array | ||
|
||
{"","ASAP","URGENT","HIGH","NORMAL/HIGH","NORMAL/MEDIUM","NORMAL/LOW","LOW"} |
Oops, something went wrong.