-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
76 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# SPDX-License-Identifier: MIT | ||
# SPDX-FileCopyrightText: 2021-2024 XMuli | ||
# SPDX-GitHub: https://github.com/XMuli/flipped | ||
# SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
# SPDX-Author: XMuli <[email protected]> | ||
|
||
cmake_minimum_required(VERSION 3.5) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# SPDX-License-Identifier: MIT | ||
# SPDX-FileCopyrightText: 2021-2024 XMuli | ||
# SPDX-GitHub: https://github.com/XMuli/flipped | ||
# SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
# SPDX-Author: XMuli <[email protected]> | ||
|
||
cmake_minimum_required(VERSION 3.5) | ||
|
||
set(project_name FLIPPED) | ||
set(project_version_major 1) | ||
set(project_version_minor 5) | ||
set(project_version_path 0) | ||
set(project_version_path 1) | ||
set(project_version ${project_version_major}.${project_version_minor}.${project_version_path}) | ||
project(${project_name} VERSION ${project_version} LANGUAGES CXX) | ||
|
||
|
@@ -19,8 +19,8 @@ set(CMAKE_AUTORCC ON) | |
set(CMAKE_CXX_STANDARD 17) | ||
set(CMAKE_CXX_STANDARD_REQUIRED ON) | ||
set(EXECUTABLE_OUTPUT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../bin") # qtcreator + msvc 可执行文件的输出目录 | ||
set(CMAKE_BINARY_DIR "${EXECUTABLE_OUTPUT_PATH}") # visual studio 2022 可执行的输出目录 | ||
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}) # 创建输出目录 | ||
set(CMAKE_BINARY_DIR "${EXECUTABLE_OUTPUT_PATH}") # visual studio 2022 可执行的输出目录 | ||
file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}) # 创建输出目录 | ||
set(_VERSION ${VERSION}) | ||
#message("--------------------->${QT_VERSION} ${QT_VERSION_MAJOR} ${QT_VERSION_MINOR} ${QT_VERSION_PATCH}") | ||
|
||
|
@@ -388,7 +388,6 @@ endif() | |
#打包和压缩*************************************************************************************** | ||
# 拷贝 ssl 和对应的 qt 依赖 | ||
|
||
|
||
if(APPLE) | ||
add_custom_command(TARGET ${project_name} POST_BUILD | ||
COMMAND "${windeployqt} ${EXECUTABLE_OUTPUT_PATH}/${project_name}.app" -verbose=1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
|
||
#include "arrowline.h" | ||
|
||
ArrowLine::ArrowLine(double lineWidth, const QPointF &p1, const QPointF &p2) | ||
: m_lineWidth(lineWidth) | ||
, m_p1(p1) | ||
, m_p2(p2) | ||
{ | ||
|
||
} | ||
|
||
const QPainterPath ArrowLine::arrowLine() const | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef ARROWLINE_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef TSINGLETON_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef XLOG_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "xqtlog.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef XQTLOG_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include <QApplication> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "iwininfo.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef IWININFO_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "wininfo.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef WININFO_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "wininfo_win.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef WININFO_WIN_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "iplugininterface.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef IPLUGININTERFACE_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
#include "appellation.h" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef APPELLATION_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "hotkeyswidget.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef HOTKEYSWIDGET_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "prefmanage.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef PREFMANAGE_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "datamaid.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef DATAMAID_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "drawhelper.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef XDRAW_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "rectcalcu.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef PICSHOT_RECTCALCU_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "screenshot.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef PICSHOT_WINFULLSCREEN_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "tray.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef TRAY_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "blurwidget.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#ifndef BLURWIDGET_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "colorparabar.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
#ifndef COLORPARABAR_H | ||
#define COLORPARABAR_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
|
||
#include "managebar.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
#ifndef MANAGEBAR_H | ||
#define MANAGEBAR_H | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: 2021-2024 XMuli | ||
// SPDX-GitHub: https://github.com/XMuli/flipped | ||
// SPDX-GitHub: https://github.com/SunnyScreenshot/FLIPPED | ||
// SPDX-Author: XMuli <[email protected]> | ||
#include "magnifier.h" | ||
|
||
|
Oops, something went wrong.