Fix headers, initial widget for text finding.
This commit is contained in:
parent
9719fd75da
commit
cf72e2c6e1
281 changed files with 376 additions and 281 deletions
11
rssguard.pro
11
rssguard.pro
|
@ -1,6 +1,6 @@
|
||||||
#################################################################
|
#################################################################
|
||||||
#
|
#
|
||||||
# For license of this file, see <object-root-folder>/LICENSE.md.
|
# For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# This is RSS Guard compilation script for qmake.
|
# This is RSS Guard compilation script for qmake.
|
||||||
|
@ -335,7 +335,8 @@ HEADERS += src/core/feeddownloader.h \
|
||||||
src/services/tt-rss/ttrssserviceroot.h \
|
src/services/tt-rss/ttrssserviceroot.h \
|
||||||
src/network-web/httpresponse.h \
|
src/network-web/httpresponse.h \
|
||||||
src/services/gmail/gui/formdownloadattachment.h \
|
src/services/gmail/gui/formdownloadattachment.h \
|
||||||
src/services/gmail/gui/formaddeditemail.h
|
src/services/gmail/gui/formaddeditemail.h \
|
||||||
|
src/gui/searchtextwidget.h
|
||||||
|
|
||||||
SOURCES += src/core/feeddownloader.cpp \
|
SOURCES += src/core/feeddownloader.cpp \
|
||||||
src/core/feedsmodel.cpp \
|
src/core/feedsmodel.cpp \
|
||||||
|
@ -469,7 +470,8 @@ SOURCES += src/core/feeddownloader.cpp \
|
||||||
src/services/tt-rss/ttrssserviceroot.cpp \
|
src/services/tt-rss/ttrssserviceroot.cpp \
|
||||||
src/network-web/httpresponse.cpp \
|
src/network-web/httpresponse.cpp \
|
||||||
src/services/gmail/gui/formdownloadattachment.cpp \
|
src/services/gmail/gui/formdownloadattachment.cpp \
|
||||||
src/services/gmail/gui/formaddeditemail.cpp
|
src/services/gmail/gui/formaddeditemail.cpp \
|
||||||
|
src/gui/searchtextwidget.cpp
|
||||||
|
|
||||||
mac {
|
mac {
|
||||||
OBJECTIVE_SOURCES += src/miscellaneous/disablewindowtabbing.mm
|
OBJECTIVE_SOURCES += src/miscellaneous/disablewindowtabbing.mm
|
||||||
|
@ -502,7 +504,8 @@ FORMS += src/gui/dialogs/formabout.ui \
|
||||||
src/services/standard/gui/formstandardimportexport.ui \
|
src/services/standard/gui/formstandardimportexport.ui \
|
||||||
src/services/tt-rss/gui/formeditttrssaccount.ui \
|
src/services/tt-rss/gui/formeditttrssaccount.ui \
|
||||||
src/services/gmail/gui/formdownloadattachment.ui \
|
src/services/gmail/gui/formdownloadattachment.ui \
|
||||||
src/services/gmail/gui/formaddeditemail.ui
|
src/services/gmail/gui/formaddeditemail.ui \
|
||||||
|
src/gui/searchtextwidget.ui
|
||||||
|
|
||||||
equals(USE_WEBENGINE, true) {
|
equals(USE_WEBENGINE, true) {
|
||||||
HEADERS += src/gui/locationlineedit.h \
|
HEADERS += src/gui/locationlineedit.h \
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "core/feeddownloader.h"
|
#include "core/feeddownloader.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FEEDDOWNLOADER_H
|
#ifndef FEEDDOWNLOADER_H
|
||||||
#define FEEDDOWNLOADER_H
|
#define FEEDDOWNLOADER_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "core/feedsmodel.h"
|
#include "core/feedsmodel.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FEEDSMODEL_H
|
#ifndef FEEDSMODEL_H
|
||||||
#define FEEDSMODEL_H
|
#define FEEDSMODEL_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "core/feedsproxymodel.h"
|
#include "core/feedsproxymodel.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FEEDSPROXYMODEL_H
|
#ifndef FEEDSPROXYMODEL_H
|
||||||
#define FEEDSPROXYMODEL_H
|
#define FEEDSPROXYMODEL_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "core/message.h"
|
#include "core/message.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGE_H
|
#ifndef MESSAGE_H
|
||||||
#define MESSAGE_H
|
#define MESSAGE_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "core/messagesmodel.h"
|
#include "core/messagesmodel.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGESMODEL_H
|
#ifndef MESSAGESMODEL_H
|
||||||
#define MESSAGESMODEL_H
|
#define MESSAGESMODEL_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "core/messagesmodelcache.h"
|
#include "core/messagesmodelcache.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGESMODELCACHE_H
|
#ifndef MESSAGESMODELCACHE_H
|
||||||
#define MESSAGESMODELCACHE_H
|
#define MESSAGESMODELCACHE_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "core/messagesmodelsqllayer.h"
|
#include "core/messagesmodelsqllayer.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGESMODELSQLLAYER_H
|
#ifndef MESSAGESMODELSQLLAYER_H
|
||||||
#define MESSAGESMODELSQLLAYER_H
|
#define MESSAGESMODELSQLLAYER_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "core/messagesproxymodel.h"
|
#include "core/messagesproxymodel.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGESPROXYMODEL_H
|
#ifndef MESSAGESPROXYMODEL_H
|
||||||
#define MESSAGESPROXYMODEL_H
|
#define MESSAGESPROXYMODEL_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef DEFINITIONS_H
|
#ifndef DEFINITIONS_H
|
||||||
#define DEFINITIONS_H
|
#define DEFINITIONS_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "dynamic-shortcuts/dynamicshortcuts.h"
|
#include "dynamic-shortcuts/dynamicshortcuts.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef DYNAMICSHORTCUTS_H
|
#ifndef DYNAMICSHORTCUTS_H
|
||||||
#define DYNAMICSHORTCUTS_H
|
#define DYNAMICSHORTCUTS_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "dynamic-shortcuts/dynamicshortcutswidget.h"
|
#include "dynamic-shortcuts/dynamicshortcutswidget.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef DYNAMICSHORTCUTSWIDGET_H
|
#ifndef DYNAMICSHORTCUTSWIDGET_H
|
||||||
#define DYNAMICSHORTCUTSWIDGET_H
|
#define DYNAMICSHORTCUTSWIDGET_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
Copyright (c) 2010, Artem Galichkin <doomer3d@gmail.com>
|
Copyright (c) 2010, Artem Galichkin <doomer3d@gmail.com>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
Copyright (c) 2010, Artem Galichkin <doomer3d@gmail.com>
|
Copyright (c) 2010, Artem Galichkin <doomer3d@gmail.com>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
Copyright (c) 2010, Artem Galichkin <doomer3d@gmail.com>
|
Copyright (c) 2010, Artem Galichkin <doomer3d@gmail.com>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
Copyright (c) 2010, Artem Galichkin <doomer3d@gmail.com>
|
Copyright (c) 2010, Artem Galichkin <doomer3d@gmail.com>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "exceptions/applicationexception.h"
|
#include "exceptions/applicationexception.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef APPLICATIONEXCEPTION_H
|
#ifndef APPLICATIONEXCEPTION_H
|
||||||
#define APPLICATIONEXCEPTION_H
|
#define APPLICATIONEXCEPTION_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "exceptions/ioexception.h"
|
#include "exceptions/ioexception.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef IOEXCEPTION_H
|
#ifndef IOEXCEPTION_H
|
||||||
#define IOEXCEPTION_H
|
#define IOEXCEPTION_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/baselineedit.h"
|
#include "gui/baselineedit.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef BASELINEEDIT_H
|
#ifndef BASELINEEDIT_H
|
||||||
#define BASELINEEDIT_H
|
#define BASELINEEDIT_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/basetoolbar.h"
|
#include "gui/basetoolbar.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef TOOLBAR_H
|
#ifndef TOOLBAR_H
|
||||||
#define TOOLBAR_H
|
#define TOOLBAR_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/colorlabel.h"
|
#include "gui/colorlabel.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef COLORLABEL_H
|
#ifndef COLORLABEL_H
|
||||||
#define COLORLABEL_H
|
#define COLORLABEL_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/comboboxwithstatus.h"
|
#include "gui/comboboxwithstatus.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef COMBOBOXWITHSTATUS_H
|
#ifndef COMBOBOXWITHSTATUS_H
|
||||||
#define COMBOBOXWITHSTATUS_H
|
#define COMBOBOXWITHSTATUS_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/dialogs/formabout.h"
|
#include "gui/dialogs/formabout.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FORMABOUT_H
|
#ifndef FORMABOUT_H
|
||||||
#define FORMABOUT_H
|
#define FORMABOUT_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/dialogs/formaddaccount.h"
|
#include "gui/dialogs/formaddaccount.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FORMADDACCOUNT_H
|
#ifndef FORMADDACCOUNT_H
|
||||||
#define FORMADDACCOUNT_H
|
#define FORMADDACCOUNT_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/dialogs/formbackupdatabasesettings.h"
|
#include "gui/dialogs/formbackupdatabasesettings.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FORMBACKUPDATABASECONFIG_H
|
#ifndef FORMBACKUPDATABASECONFIG_H
|
||||||
#define FORMBACKUPDATABASECONFIG_H
|
#define FORMBACKUPDATABASECONFIG_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/dialogs/formdatabasecleanup.h"
|
#include "gui/dialogs/formdatabasecleanup.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FORMDATABASECLEANUP_H
|
#ifndef FORMDATABASECLEANUP_H
|
||||||
#define FORMDATABASECLEANUP_H
|
#define FORMDATABASECLEANUP_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/dialogs/formmain.h"
|
#include "gui/dialogs/formmain.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FORMMAIN_H
|
#ifndef FORMMAIN_H
|
||||||
#define FORMMAIN_H
|
#define FORMMAIN_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/dialogs/formrestoredatabasesettings.h"
|
#include "gui/dialogs/formrestoredatabasesettings.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FORMRESTOREDATABASESETTINGS_H
|
#ifndef FORMRESTOREDATABASESETTINGS_H
|
||||||
#define FORMRESTOREDATABASESETTINGS_H
|
#define FORMRESTOREDATABASESETTINGS_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/dialogs/formsettings.h"
|
#include "gui/dialogs/formsettings.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FORMSETTINGS_H
|
#ifndef FORMSETTINGS_H
|
||||||
#define FORMSETTINGS_H
|
#define FORMSETTINGS_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/dialogs/formupdate.h"
|
#include "gui/dialogs/formupdate.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FORMUPDATE_H
|
#ifndef FORMUPDATE_H
|
||||||
#define FORMUPDATE_H
|
#define FORMUPDATE_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/dialogs/oauthlogin.h"
|
#include "gui/dialogs/oauthlogin.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef OAUTHLOGIN_H
|
#ifndef OAUTHLOGIN_H
|
||||||
#define OAUTHLOGIN_H
|
#define OAUTHLOGIN_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/discoverfeedsbutton.h"
|
#include "gui/discoverfeedsbutton.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef DISCOVERFEEDSBUTTON_H
|
#ifndef DISCOVERFEEDSBUTTON_H
|
||||||
#define DISCOVERFEEDSBUTTON_H
|
#define DISCOVERFEEDSBUTTON_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/edittableview.h"
|
#include "gui/edittableview.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef EDITTABLEVIEW_H
|
#ifndef EDITTABLEVIEW_H
|
||||||
#define EDITTABLEVIEW_H
|
#define EDITTABLEVIEW_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/feedmessageviewer.h"
|
#include "gui/feedmessageviewer.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FEEDMESSAGEVIEWER_H
|
#ifndef FEEDMESSAGEVIEWER_H
|
||||||
#define FEEDMESSAGEVIEWER_H
|
#define FEEDMESSAGEVIEWER_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/feedstoolbar.h"
|
#include "gui/feedstoolbar.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FEEDSTOOLBAR_H
|
#ifndef FEEDSTOOLBAR_H
|
||||||
#define FEEDSTOOLBAR_H
|
#define FEEDSTOOLBAR_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/feedsview.h"
|
#include "gui/feedsview.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef FEEDSVIEW_H
|
#ifndef FEEDSVIEW_H
|
||||||
#define FEEDSVIEW_H
|
#define FEEDSVIEW_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/guiutilities.h"
|
#include "gui/guiutilities.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef GUIUTILITIES_H
|
#ifndef GUIUTILITIES_H
|
||||||
#define GUIUTILITIES_H
|
#define GUIUTILITIES_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/labelwithstatus.h"
|
#include "gui/labelwithstatus.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef LABELWITHSTATUS_H
|
#ifndef LABELWITHSTATUS_H
|
||||||
#define LABELWITHSTATUS_H
|
#define LABELWITHSTATUS_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/lineeditwithstatus.h"
|
#include "gui/lineeditwithstatus.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef LINEEDITWITHSTATUS_H
|
#ifndef LINEEDITWITHSTATUS_H
|
||||||
#define LINEEDITWITHSTATUS_H
|
#define LINEEDITWITHSTATUS_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/locationlineedit.h"
|
#include "gui/locationlineedit.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef LOCATIONLINEEDIT_H
|
#ifndef LOCATIONLINEEDIT_H
|
||||||
#define LOCATIONLINEEDIT_H
|
#define LOCATIONLINEEDIT_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/messagebox.h"
|
#include "gui/messagebox.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGEBOX_H
|
#ifndef MESSAGEBOX_H
|
||||||
#define MESSAGEBOX_H
|
#define MESSAGEBOX_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/messagepreviewer.h"
|
#include "gui/messagepreviewer.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGEPREVIEWER_H
|
#ifndef MESSAGEPREVIEWER_H
|
||||||
#define MESSAGEPREVIEWER_H
|
#define MESSAGEPREVIEWER_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/messagessearchlineedit.h"
|
#include "gui/messagessearchlineedit.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGESEARCHLINEEDIT_H
|
#ifndef MESSAGESEARCHLINEEDIT_H
|
||||||
#define MESSAGESEARCHLINEEDIT_H
|
#define MESSAGESEARCHLINEEDIT_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/messagestoolbar.h"
|
#include "gui/messagestoolbar.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef NEWSTOOLBAR_H
|
#ifndef NEWSTOOLBAR_H
|
||||||
#define NEWSTOOLBAR_H
|
#define NEWSTOOLBAR_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGESVIEW_H
|
#ifndef MESSAGESVIEW_H
|
||||||
#define MESSAGESVIEW_H
|
#define MESSAGESVIEW_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/messagetextbrowser.h"
|
#include "gui/messagetextbrowser.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef MESSAGETEXTBROWSER_H
|
#ifndef MESSAGETEXTBROWSER_H
|
||||||
#define MESSAGETEXTBROWSER_H
|
#define MESSAGETEXTBROWSER_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/newspaperpreviewer.h"
|
#include "gui/newspaperpreviewer.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef NEWSPAPERPREVIEWER_H
|
#ifndef NEWSPAPERPREVIEWER_H
|
||||||
#define NEWSPAPERPREVIEWER_H
|
#define NEWSPAPERPREVIEWER_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/plaintoolbutton.h"
|
#include "gui/plaintoolbutton.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef CLOSEBUTTON_H
|
#ifndef CLOSEBUTTON_H
|
||||||
#define CLOSEBUTTON_H
|
#define CLOSEBUTTON_H
|
||||||
|
|
7
src/gui/searchtextwidget.cpp
Executable file
7
src/gui/searchtextwidget.cpp
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
|
#include "gui/searchtextwidget.h"
|
||||||
|
|
||||||
|
SearchTextWidget::SearchTextWidget(QWidget* parent) : QWidget(parent) {
|
||||||
|
m_ui.setupUi(this);
|
||||||
|
}
|
24
src/gui/searchtextwidget.h
Executable file
24
src/gui/searchtextwidget.h
Executable file
|
@ -0,0 +1,24 @@
|
||||||
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
|
#ifndef SEARCHTEXTWIDGET_H
|
||||||
|
#define SEARCHTEXTWIDGET_H
|
||||||
|
|
||||||
|
#include <QWidget>
|
||||||
|
|
||||||
|
#include "ui_searchtextwidget.h"
|
||||||
|
|
||||||
|
namespace Ui {
|
||||||
|
class SearchTextWidget;
|
||||||
|
}
|
||||||
|
|
||||||
|
class SearchTextWidget : public QWidget {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit SearchTextWidget(QWidget* parent = nullptr);
|
||||||
|
|
||||||
|
private:
|
||||||
|
Ui::SearchTextWidget m_ui;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // SEARCHTEXTWIDGET_H
|
61
src/gui/searchtextwidget.ui
Executable file
61
src/gui/searchtextwidget.ui
Executable file
|
@ -0,0 +1,61 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<ui version="4.0">
|
||||||
|
<class>SearchTextWidget</class>
|
||||||
|
<widget class="QWidget" name="SearchTextWidget">
|
||||||
|
<property name="geometry">
|
||||||
|
<rect>
|
||||||
|
<x>0</x>
|
||||||
|
<y>0</y>
|
||||||
|
<width>370</width>
|
||||||
|
<height>27</height>
|
||||||
|
</rect>
|
||||||
|
</property>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
|
<property name="leftMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="topMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="rightMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<property name="bottomMargin">
|
||||||
|
<number>0</number>
|
||||||
|
</property>
|
||||||
|
<item>
|
||||||
|
<widget class="QLineEdit" name="m_txtSearch">
|
||||||
|
<property name="placeholderText">
|
||||||
|
<string>Seach text</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<widget class="QToolButton" name="m_btnClear">
|
||||||
|
<property name="text">
|
||||||
|
<string/>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
|
<item>
|
||||||
|
<spacer name="horizontalSpacer">
|
||||||
|
<property name="orientation">
|
||||||
|
<enum>Qt::Horizontal</enum>
|
||||||
|
</property>
|
||||||
|
<property name="sizeHint" stdset="0">
|
||||||
|
<size>
|
||||||
|
<width>40</width>
|
||||||
|
<height>20</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
</spacer>
|
||||||
|
</item>
|
||||||
|
</layout>
|
||||||
|
</widget>
|
||||||
|
<tabstops>
|
||||||
|
<tabstop>m_txtSearch</tabstop>
|
||||||
|
<tabstop>m_btnClear</tabstop>
|
||||||
|
</tabstops>
|
||||||
|
<resources/>
|
||||||
|
<connections/>
|
||||||
|
</ui>
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/settings/settingsbrowsermail.h"
|
#include "gui/settings/settingsbrowsermail.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef SETTINGSBROWSERMAIL_H
|
#ifndef SETTINGSBROWSERMAIL_H
|
||||||
#define SETTINGSBROWSERMAIL_H
|
#define SETTINGSBROWSERMAIL_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/settings/settingsdatabase.h"
|
#include "gui/settings/settingsdatabase.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef SETTINGSDATABASE_H
|
#ifndef SETTINGSDATABASE_H
|
||||||
#define SETTINGSDATABASE_H
|
#define SETTINGSDATABASE_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/settings/settingsdownloads.h"
|
#include "gui/settings/settingsdownloads.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef SETTINGSDOWNLOADS_H
|
#ifndef SETTINGSDOWNLOADS_H
|
||||||
#define SETTINGSDOWNLOADS_H
|
#define SETTINGSDOWNLOADS_H
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#include "gui/settings/settingsfeedsmessages.h"
|
#include "gui/settings/settingsfeedsmessages.h"
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// For license of this file, see <object-root-folder>/LICENSE.md.
|
// For license of this file, see <project-root-folder>/LICENSE.md.
|
||||||
|
|
||||||
#ifndef SETTINGSFEEDSMESSAGES_H
|
#ifndef SETTINGSFEEDSMESSAGES_H
|
||||||
#define SETTINGSFEEDSMESSAGES_H
|
#define SETTINGSFEEDSMESSAGES_H
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue