1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-24 01:23:53 +00:00
openmw/apps/opencs/view/settings/toggleblock.hpp

28 lines
496 B
C++
Raw Normal View History

2013-05-08 01:36:34 +00:00
#ifndef TOGGLEBLOCK_HPP
#define TOGGLEBLOCK_HPP
#include <QObject>
#include "customblock.hpp"
namespace CSVSettings
2013-05-08 01:36:34 +00:00
{
class GroupBlock;
class GroupBox;
class ToggleWidget;
class ItemBlock;
class ToggleBlock : public CustomBlock
{
public:
explicit ToggleBlock(QWidget *parent = 0);
int build (CustomBlockDef *def);
2013-05-08 01:36:34 +00:00
private:
GroupBox *buildToggleWidgets (GroupBlockDef *def, QString &defaultToggle);
2013-05-08 01:36:34 +00:00
};
}
#endif // TOGGLEBLOCK_HPP