mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 11:26:11 +00:00
0ea5d6fa4b
* Add dialog for deleting and renaming layouts. * Add documentation. Co-authored-by: Itay Cohen
26 lines
408 B
C++
26 lines
408 B
C++
#ifndef CUTTER_LAYOUT_H
|
|
#define CUTTER_LAYOUT_H
|
|
|
|
#include <QByteArray>
|
|
#include <QMap>
|
|
#include <QString>
|
|
#include <QVariantMap>
|
|
|
|
namespace Cutter
|
|
{
|
|
|
|
struct CutterLayout
|
|
{
|
|
QByteArray geometry;
|
|
QByteArray state;
|
|
QMap<QString, QVariantMap> viewProperties;
|
|
};
|
|
|
|
const QString LAYOUT_DEFAULT = "Default";
|
|
const QString LAYOUT_DEBUG = "Debug";
|
|
|
|
bool isBuiltinLayoutName(const QString &name);
|
|
|
|
}
|
|
#endif
|