File: tools.h

package info (click to toggle)
qtermwidget 2.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,684 kB
  • sloc: cpp: 14,226; python: 57; makefile: 12
file content (14 lines) | stat: -rw-r--r-- 293 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef TOOLS_H
#define TOOLS_H

#include <QString>
#include <QStringList>
#include <QLoggingCategory>

QString get_kb_layout_dir();
void add_custom_color_scheme_dir(const QString& custom_dir);
const QStringList get_color_schemes_dirs();

Q_DECLARE_LOGGING_CATEGORY(qtermwidgetLogger)

#endif