Skip to content

Commit

Permalink
First upload, version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tina-nova committed Feb 12, 2021
1 parent 1e78442 commit 80f6df2
Show file tree
Hide file tree
Showing 41 changed files with 5,148 additions and 0 deletions.
7 changes: 7 additions & 0 deletions AttributionsNotices
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".
43 changes: 43 additions & 0 deletions MainClass.h
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
678 changes: 678 additions & 0 deletions Makefile

Large diffs are not rendered by default.

665 changes: 665 additions & 0 deletions Makefile.Debug

Large diffs are not rendered by default.

665 changes: 665 additions & 0 deletions Makefile.Release

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions PseudoFeb
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"}
Loading

0 comments on commit 80f6df2

Please sign in to comment.