1 //===========================================
2 //  Lumina Desktop Source Code
3 //  Copyright (c) 2016, Ken Moore
4 //  Available under the 3-clause BSD license
5 //  See the LICENSE file for full details
6 //===========================================
7 #ifndef _LUMINA_CONFIG_PAGE_WIDGET_FETCH_H
8 #define _LUMINA_CONFIG_PAGE_WIDGET_FETCH_H
9 
10 #include "../globals.h"
11 #include "PageWidget.h"
12 
13 class Pages{
14 public:
15   static PAGEINFO PageInfo(QString, QString, QString, QString, QString, QString, QStringList, QStringList);
16   static QList<PAGEINFO> KnownPages();
17   static PageWidget* GetNewPage(QString id, QWidget *parent);
18 };
19 
20 #endif
21