aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config/pages/getPage.h
blob: 3c2831e469487f39251149256b4668f71816f5e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//===========================================
//  Lumina Desktop Source Code
//  Copyright (c) 2016, Ken Moore
//  Available under the 3-clause BSD license
//  See the LICENSE file for full details
//===========================================
#ifndef _LUMINA_CONFIG_PAGE_WIDGET_FETCH_H
#define _LUMINA_CONFIG_PAGE_WIDGET_FETCH_H

#include "../globals.h"
#include "PageWidget.h"

class Pages{
public:
  static PAGEINFO PageInfo(QString, QString, QString, QString, QString, QString, QStringList, QStringList);
  static QList<PAGEINFO> KnownPages();
  static PageWidget* GetNewPage(QString id, QWidget *parent);
};

#endif
bgstack15