mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
59eddc6259
As there is a problem with sizing the borders in QWebView, "vw" sizing is not working as supposed with border-width, As a workaround we export border-width dynamically, so that border-width is relatively the same for all page sizes. The border-width is equal to the page width / 1000 which gives a nice range for borders for A0 - A5 papers, Also prevent drawing zero pixel borders and use 1 px borders as the minimum border. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
185 lines
4.1 KiB
C++
185 lines
4.1 KiB
C++
#ifndef TEMPLATELAYOUT_H
|
|
#define TEMPLATELAYOUT_H
|
|
|
|
#include <grantlee_templates.h>
|
|
#include "mainwindow.h"
|
|
#include "printoptions.h"
|
|
|
|
int getTotalWork(print_options *printOptions);
|
|
void find_all_templates();
|
|
|
|
extern QList<QString> grantlee_templates;
|
|
|
|
class TemplateLayout : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
TemplateLayout(print_options *PrintOptions, template_options *templateOptions);
|
|
~TemplateLayout();
|
|
QString generate();
|
|
static QString readTemplate(QString template_name);
|
|
static void writeTemplate(QString template_name, QString grantlee_template);
|
|
|
|
private:
|
|
Grantlee::Engine *m_engine;
|
|
print_options *PrintOptions;
|
|
template_options *templateOptions;
|
|
|
|
signals:
|
|
void progressUpdated(int value);
|
|
};
|
|
|
|
class Dive {
|
|
private:
|
|
int m_number;
|
|
int m_id;
|
|
int m_rating;
|
|
QString m_date;
|
|
QString m_time;
|
|
QString m_location;
|
|
QString m_duration;
|
|
QString m_depth;
|
|
QString m_divemaster;
|
|
QString m_buddy;
|
|
QString m_airTemp;
|
|
QString m_waterTemp;
|
|
QString m_notes;
|
|
QString m_tags;
|
|
QString m_gas;
|
|
QString m_sac;
|
|
struct dive *dive;
|
|
void put_date_time();
|
|
void put_location();
|
|
void put_duration();
|
|
void put_depth();
|
|
void put_divemaster();
|
|
void put_buddy();
|
|
void put_temp();
|
|
void put_notes();
|
|
void put_tags();
|
|
void put_gas();
|
|
void put_sac();
|
|
|
|
public:
|
|
Dive(struct dive *dive)
|
|
: dive(dive)
|
|
{
|
|
m_number = dive->number;
|
|
m_id = dive->id;
|
|
m_rating = dive->rating;
|
|
put_date_time();
|
|
put_location();
|
|
put_duration();
|
|
put_depth();
|
|
put_divemaster();
|
|
put_buddy();
|
|
put_temp();
|
|
put_notes();
|
|
put_tags();
|
|
put_gas();
|
|
put_sac();
|
|
}
|
|
Dive();
|
|
~Dive();
|
|
int number() const;
|
|
int id() const;
|
|
int rating() const;
|
|
QString date() const;
|
|
QString time() const;
|
|
QString location() const;
|
|
QString duration() const;
|
|
QString depth() const;
|
|
QString divemaster() const;
|
|
QString buddy() const;
|
|
QString airTemp() const;
|
|
QString waterTemp() const;
|
|
QString notes() const;
|
|
QString tags() const;
|
|
QString gas() const;
|
|
QString sac() const;
|
|
};
|
|
|
|
Q_DECLARE_METATYPE(Dive)
|
|
Q_DECLARE_METATYPE(template_options)
|
|
Q_DECLARE_METATYPE(print_options)
|
|
|
|
GRANTLEE_BEGIN_LOOKUP(Dive)
|
|
if (property == "number")
|
|
return object.number();
|
|
else if (property == "id")
|
|
return object.id();
|
|
else if (property == "date")
|
|
return object.date();
|
|
else if (property == "time")
|
|
return object.time();
|
|
else if (property == "location")
|
|
return object.location();
|
|
else if (property == "duration")
|
|
return object.duration();
|
|
else if (property == "depth")
|
|
return object.depth();
|
|
else if (property == "divemaster")
|
|
return object.divemaster();
|
|
else if (property == "buddy")
|
|
return object.buddy();
|
|
else if (property == "airTemp")
|
|
return object.airTemp();
|
|
else if (property == "waterTemp")
|
|
return object.waterTemp();
|
|
else if (property == "notes")
|
|
return object.notes();
|
|
else if (property == "rating")
|
|
return object.rating();
|
|
else if (property == "sac")
|
|
return object.sac();
|
|
else if (property == "tags")
|
|
return object.tags();
|
|
else if (property == "gas")
|
|
return object.gas();
|
|
GRANTLEE_END_LOOKUP
|
|
|
|
GRANTLEE_BEGIN_LOOKUP(template_options)
|
|
if (property == "font") {
|
|
switch (object.font_index) {
|
|
case 0:
|
|
return "Arial, Helvetica, sans-serif";
|
|
case 1:
|
|
return "Impact, Charcoal, sans-serif";
|
|
case 2:
|
|
return "Georgia, serif";
|
|
case 3:
|
|
return "Courier, monospace";
|
|
case 4:
|
|
return "Verdana, Geneva, sans-serif";
|
|
}
|
|
} else if (property == "borderwidth") {
|
|
return object.border_width;
|
|
} else if (property == "font_size") {
|
|
return object.font_size / 9.0;
|
|
} else if (property == "line_spacing") {
|
|
return object.line_spacing;
|
|
} else if (property == "color1") {
|
|
return object.color_palette.color1.name();
|
|
} else if (property == "color2") {
|
|
return object.color_palette.color2.name();
|
|
} else if (property == "color3") {
|
|
return object.color_palette.color3.name();
|
|
} else if (property == "color4") {
|
|
return object.color_palette.color4.name();
|
|
} else if (property == "color5") {
|
|
return object.color_palette.color5.name();
|
|
} else if (property == "color6") {
|
|
return object.color_palette.color6.name();
|
|
}
|
|
GRANTLEE_END_LOOKUP
|
|
|
|
GRANTLEE_BEGIN_LOOKUP(print_options)
|
|
if (property == "grayscale") {
|
|
if (object.color_selected) {
|
|
return "";
|
|
} else {
|
|
return "-webkit-filter: grayscale(100%)";
|
|
}
|
|
}
|
|
GRANTLEE_END_LOOKUP
|
|
|
|
#endif
|