2022-04-20 15:25:15 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* QSkinny - Copyright (C) 2016 Uwe Rathmann
|
2023-04-06 09:23:37 +02:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2022-04-20 15:25:15 +02:00
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Page.h"
|
|
|
|
|
|
|
|
class SelectorPage : public Page
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SelectorPage( QQuickItem* = nullptr );
|
|
|
|
|
|
|
|
private:
|
|
|
|
void populate();
|
|
|
|
};
|