MattyNotes
noteholder.h
Go to the documentation of this file.
1 #ifndef NOTEHOLDER_H
2 #define NOTEHOLDER_H
3 
4 #ifdef _MSC_VER
5 #pragma once
6 #endif // _MSC_VER
7 
8 #include <QVector>
9 #include <QWidget>
10 
12 {
13 public:
14  NoteHolder();
15  ~NoteHolder();
16  void sortNotesByCrDate();
17  static void publishNotes(QWidget* ParentWidget);
18  static void setFilters();
19  static void erasePublishedNotes(QWidget* ParentWidget);
20 private:
21  static int TotalNoteCount;
22 
23  static QVector<class MattyNote> ListOfAllNotes;
24  //static QVector<QString> ListOfGroupBoxeNames;
25 
26  static void getAllNotes();
27  static void getSelectedNotes();
28 
29  //static QVector<class MattyGroupBox*> ListofGroupBoxes;
30 };
31 
32 #endif // NOTEHOLDER_H
~NoteHolder()
Definition: noteholder.cpp:15
Definition: noteholder.h:11
void sortNotesByCrDate()
Definition: noteholder.cpp:19
static void publishNotes(QWidget *ParentWidget)
Definition: noteholder.cpp:23
static void getAllNotes()
Definition: noteholder.cpp:44
static void setFilters()
Definition: noteholder.cpp:40
static int TotalNoteCount
Definition: noteholder.h:21
static void erasePublishedNotes(QWidget *ParentWidget)
Definition: noteholder.cpp:80
NoteHolder()
Definition: noteholder.cpp:10
static void getSelectedNotes()
Definition: noteholder.cpp:61
static QVector< class MattyNote > ListOfAllNotes
Definition: noteholder.h:23