Commit 2d877c47 authored by Sebastian Lange (DL7BST)'s avatar Sebastian Lange (DL7BST)
Browse files

first simple version of CQ TU Logbook

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+0 −0

Empty file added.

README.md

0 → 100644
+35 −0
Original line number Diff line number Diff line
# CQ TU Logger

About:

* written in Qt (runs with Qt4 and Qt5 libraries)
* quick & dirty using QtCreator

## Compiling & execution

For building *cqtulog* you need a C++ compiler & qmake:

* g++
* Qt5 or Qt4 with qmake

Prerequisites for Debian & Ubuntu:

    > apt install g++ qt5-default qt5-qmake

Build process:

    > mkdir build
    > cd build
    > qmake ..
    > make
    > ./cqtulog

## Future work

* test for memory leaks with valgrind
* Cross compiling for Windows/MacOS
* completerSetData()
    * read lists from files
* checkDupes()
    * seperate dynamic list view could be better: worked (this band), worked (other band), known calls
* upgrades for CQ TU SSB & CQ TU CW

cqtulog.pro

0 → 100644
+33 −0
Original line number Diff line number Diff line
#-------------------------------------------------
#
# Project created by QtCreator 2017-01-20T16:20:32
#
#-------------------------------------------------

QT       += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = cqtulog
TEMPLATE = app

# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0


SOURCES += main.cpp\
        mainwindow.cpp

HEADERS  += mainwindow.h

FORMS    += mainwindow.ui

DISTFILES +=

main.cpp

0 → 100644
+11 −0
Original line number Diff line number Diff line
#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();

    return a.exec();
}

mainwindow.cpp

0 → 100644
+661 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading