bootstrapped qt project

This commit is contained in:
Marc Wäckerlin
2015-10-08 11:22:57 +00:00
parent acc32fe538
commit 06513a9d34
28 changed files with 4993 additions and 0 deletions

28
src/certman.hxx Normal file
View File

@@ -0,0 +1,28 @@
/** @id $Id$
This file has been added:
- by bootstrap.sh
- on Thu, 08 October 2015 11:56:48 +0200
*/
// 1 2 3 4 5 6 7 8
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
#ifndef CERTMAN_HXX
#define CERTMAN_HXX
#include <QMainWindow>
#include <ui_certman.hxx>
/// Main Window
/** Main window for certman */
class CertMan: public QMainWindow, protected Ui::CertMan {
Q_OBJECT;
public:
explicit CertMan(QWidget *parent = 0): QMainWindow(parent) {
setupUi(this);
}
virtual ~CertMan() {}
};
#endif

31
src/certman.ui Normal file
View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>CertMan</class>
<widget class="QMainWindow" name="CertMan">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>600</height>
</rect>
</property>
<property name="windowTitle">
<string>CertMan</string>
</property>
<widget class="QWidget" name="centralwidget"/>
<widget class="QMenuBar" name="menubar">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>800</width>
<height>22</height>
</rect>
</property>
</widget>
<widget class="QStatusBar" name="statusbar"/>
</widget>
<resources/>
<connections/>
</ui>

8
src/languages.qrc Normal file
View File

@@ -0,0 +1,8 @@
<RCC>
<qresource prefix="/language">
<file>certman_de.qm</file>
<file>certman_fr.qm</file>
<file>certman_it.qm</file>
<file>certman_en.qm</file>
</qresource>
</RCC>

28
src/main.cxx Normal file
View File

@@ -0,0 +1,28 @@
/** @id $Id$
This file has been added:
- by bootstrap.sh
- on Thu, 08 October 2015 11:56:48 +0200
*/
// 1 2 3 4 5 6 7 8
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
#include <certman.hxx>
#include <QApplication>
#include <QCommandLineParser>
#include <iostream>
int main(int argc, char *argv[]) try {
QApplication a(argc, argv);
QCommandLineParser parser;
parser.addHelpOption();
parser.process(a);
QStringList scripts(parser.positionalArguments());
CertMan w;
w.show();
return a.exec();
} catch (std::exception &x) {
std::cerr<<"**** error: "<<x.what()<<std::endl;
return 1;
}

70
src/makefile.am Normal file
View File

@@ -0,0 +1,70 @@
## @id $Id$
##
## This file has been added:
## - by bootstrap.sh
## - on Thu, 08 October 2015 13:20:39 +0200
## Feel free to change it or even remove and rebuild it, up to your needs
##
## 1 2 3 4 5 6 7 8
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
bin_PROGRAMS = certman
## required to enable the translation feature
LANGUAGE_FILE_BASE = certman
## list here the Qt plugins your project depends on
## required to build Mac OS-X app-bundle
QT_PLUGINS = iconengines imageformats platforms
#### enable if you deliver a KDE/Gnome desktop file
#applicationsdir = /applications
#dist_applications_DATA = certman.desktop
#### enable (ev. instead of bin_PROGRAMS) if you build a library
#lib_LTLIBRARIES = certman.la
#certman_la_SOURCES = libmain.cxx version.cxx
## noop to prevent:
## «src/makefile.am: error: object 'version.$(OBJEXT)' created both with
## libtool and without»
#certman_la_CXXFLAGS = $(AM_CXXFLAGS)
## list headers that are required for build, but that are not installed
noinst_HEADERS = version.hxx
## list all %.hxx files with Q_OBJECT as moc_%.cxx
certman_MOCFILES = moc_certman.cxx
## list all %.ui files as ui_%.hxx
certman_UIFILES = ui_certman.hxx
## list all %.qrc resource files as qrc_%.cxx
## note: if there exists a directory %, the file %.qrc is generated from that
certman_RESOURCES = qrc_languages.cxx # qrc_resources.cxx
## list all final translation files, list all supported languages here
certman_TRANSLATIONS = ${LANGUAGE_FILE_BASE}_en.qm \
${LANGUAGE_FILE_BASE}_de.qm \
${LANGUAGE_FILE_BASE}_fr.qm \
${LANGUAGE_FILE_BASE}_it.qm
## list all C++ files that need translation
certman_TR_FILES = main.cxx version.cxx
## automatic assembly, no need to change
certman_SOURCES = ${certman_TR_FILES} ${BUILT_SOURCES}
## automatic assembly, no need to change
BUILT_SOURCES = ${certman_MOCFILES} ${certman_UIFILES} ${certman_TRANSLATIONS} ${certman_RESOURCES}
## automatic assembly, no need to change
EXTRA_DIST_TR = ${certman_MOCFILES:moc_%.cxx=%.hxx} ${certman_UIFILES:ui_%.hxx=%.ui}
## automatic assembly, no need to change
## except: adapt the pre-delivered qt_%.qm list (language files you copy from qt
EXTRA_DIST = ${EXTRA_DIST_TR} ${certman_RESOURCES:qrc_%.cxx:%.qrc} ${certman_TRANSLATIONS:%.qm=%.ts} qt_de.qm qt_fr.qm
## automatic assembly, no need to change
LANGUAGE_FILES = ${EXTRA_DIST_TR} ${certman_TR_FILES}
MAINTAINERCLEANFILES = makefile.in

40
src/version.cxx Normal file
View File

@@ -0,0 +1,40 @@
/*! @file
@id $
*/
// 1 2 3 4 5 6 7 8
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
#include <string>
namespace NAMESPACE {
std::string package_string() {
return PACKAGE_STRING;
}
std::string package_name() {
return PACKAGE_NAME;
}
std::string version() {
return PACKAGE_VERSION;
}
std::string build_date() {
return BUILD_DATE;
}
std::string author() {
return AUTHOR;
}
std::string description() {
return DESCRIPTION;
}
std::string readme() {
return README;
}
std::string logo() {
return PROJECT_LOGO;
}
std::string icon() {
return PROJECT_ICON;
}
const std::string WHAT("#(@) " PACKAGE_STRING);
const std::string IDENT("$Id: " PACKAGE_STRING);
}

33
src/version.hxx Normal file
View File

@@ -0,0 +1,33 @@
/*! @file
@id $Id$
*/
// 1 2 3 4 5 6 7 8
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
#include <string>
namespace NAMESPACE {
/// get package string which consists of package name and package version
std::string package_string();
/// get package name
std::string package_name();
/// get package version
std::string version();
/// get code build date
std::string build_date();
/// get author, i.e. copyright holder
std::string author();
/// get short package description (1st line of README)
std::string description();
/// get long package description (starting at 3rd line in README)
std::string readme();
/// get package logo file name
std::string logo();
/// get package icon file name
std::string icon();
/// used for <code>what filename</code>
extern const std::string WHAT;
/// used for <code>ident filename</code>
extern const std::string IDENT;
}