2004-10-15 07:07:57 +00:00
|
|
|
/***************************************************************************
|
2005-06-23 06:06:40 +00:00
|
|
|
id_text.h
|
|
|
|
-----------
|
2004-10-15 07:07:57 +00:00
|
|
|
begin : Thu Oct 14 2004
|
|
|
|
copyright : (C) 2004 by Michael Margraf
|
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef ID_TEXT_H
|
|
|
|
#define ID_TEXT_H
|
|
|
|
|
|
|
|
#include "painting.h"
|
|
|
|
|
2013-11-26 16:06:53 +01:00
|
|
|
#include <QString>
|
2014-11-08 03:28:36 +08:00
|
|
|
#include <QList>
|
2006-10-16 06:17:29 +00:00
|
|
|
|
|
|
|
struct SubParameter {
|
|
|
|
SubParameter(bool display_, const QString& Name_, const QString& Descr_)
|
2009-04-16 12:56:29 +00:00
|
|
|
: display(display_), Name(Name_), Description(Descr_) { Type = ""; };
|
|
|
|
SubParameter(bool display_, const QString& Name_, const QString& Descr_,
|
|
|
|
const QString& Type_)
|
|
|
|
: display(display_), Name(Name_), Description(Descr_), Type(Type_) {};
|
2006-10-16 06:17:29 +00:00
|
|
|
|
|
|
|
bool display;
|
2009-04-16 12:56:29 +00:00
|
|
|
QString Name, Description, Type;
|
2006-10-16 06:17:29 +00:00
|
|
|
};
|
|
|
|
|
2004-10-15 07:07:57 +00:00
|
|
|
|
|
|
|
class ID_Text : public Painting {
|
|
|
|
public:
|
|
|
|
ID_Text(int cx_=0, int cy_=0);
|
2006-10-16 06:17:29 +00:00
|
|
|
~ID_Text();
|
2004-10-15 07:07:57 +00:00
|
|
|
|
2013-05-27 22:53:11 +02:00
|
|
|
void paintScheme(Schematic*);
|
2004-10-15 07:07:57 +00:00
|
|
|
void getCenter(int&, int&);
|
|
|
|
void setCenter(int, int, bool relative=false);
|
|
|
|
|
|
|
|
bool load(const QString&);
|
|
|
|
QString save();
|
2009-10-27 20:36:29 +00:00
|
|
|
QString saveCpp();
|
2014-02-19 10:01:32 +01:00
|
|
|
QString saveJSON();
|
2024-05-17 23:55:10 +03:00
|
|
|
void paint(QPainter* painter) override;
|
2007-02-08 07:04:54 +00:00
|
|
|
bool getSelected(float, float, float);
|
2004-10-15 07:07:57 +00:00
|
|
|
|
2023-12-11 15:13:33 +03:00
|
|
|
void rotate(int, int);
|
2004-10-15 07:07:57 +00:00
|
|
|
void mirrorX();
|
|
|
|
void mirrorY();
|
2024-01-22 21:02:16 -05:00
|
|
|
bool Dialog(QWidget *parent = 0);
|
2004-10-15 07:07:57 +00:00
|
|
|
|
|
|
|
QString Prefix;
|
2014-11-08 03:28:36 +08:00
|
|
|
QList<SubParameter *> Parameter;
|
2004-10-15 07:07:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|