Refactor: move qt detection to own header

This commit is contained in:
Linus Dierheimer
2022-07-26 17:42:28 +02:00
parent 7a15dee2be
commit 128302596e
7 changed files with 23 additions and 11 deletions
+1
View File
@@ -1,5 +1,6 @@
#include "fastfetch.h"
#include "common/caching.h"
#include "detection/qt.h"
#include <stdlib.h>
#include <unistd.h>
+1
View File
@@ -1,4 +1,5 @@
#include "fastfetch.h"
#include "detection/qt.h"
#include "common/properties.h"
#include <stdlib.h>
+18
View File
@@ -0,0 +1,18 @@
#pragma once
#ifndef FF_INCLUDED_detection_qt
#define FF_INCLUDED_detection_qt
#include "util/FFstrbuf.h"
typedef struct FFQtResult
{
FFstrbuf widgetStyle;
FFstrbuf colorScheme;
FFstrbuf icons;
FFstrbuf font;
} FFQtResult;
const FFQtResult* ffDetectQt(FFinstance* instance);
#endif
-11
View File
@@ -173,14 +173,6 @@ typedef struct FFinstance
FFstate state;
} FFinstance;
typedef struct FFQtResult
{
FFstrbuf widgetStyle;
FFstrbuf colorScheme;
FFstrbuf icons;
FFstrbuf font;
} FFQtResult;
typedef struct FFGTKResult
{
FFstrbuf theme;
@@ -314,9 +306,6 @@ void ffLogoBuiltinListAutocompletion();
// Detection functions //
/////////////////////////
//detection/plasma.c
const FFQtResult* ffDetectQt(FFinstance* instance);
//detection/gtk.c
const FFGTKResult* ffDetectGTK2(FFinstance* instance);
const FFGTKResult* ffDetectGTK4(FFinstance* instance);
+1
View File
@@ -2,6 +2,7 @@
#include "common/font.h"
#include "common/printing.h"
#include "common/parsing.h"
#include "detection/qt.h"
#define FF_FONT_MODULE_NAME "Font"
#define FF_FONT_NUM_FORMAT_ARGS 21
+1
View File
@@ -1,6 +1,7 @@
#include "fastfetch.h"
#include "common/printing.h"
#include "common/parsing.h"
#include "detection/qt.h"
#define FF_ICONS_MODULE_NAME "Icons"
#define FF_ICONS_NUM_FORMAT_ARGS 5
+1
View File
@@ -1,6 +1,7 @@
#include "fastfetch.h"
#include "common/printing.h"
#include "common/parsing.h"
#include "detection/qt.h"
#define FF_THEME_MODULE_NAME "Theme"
#define FF_THEME_NUM_FORMAT_ARGS 7