id
int64
0
755k
file_name
stringlengths
3
109
file_path
stringlengths
13
185
content
stringlengths
31
9.38M
size
int64
31
9.38M
language
stringclasses
1 value
extension
stringclasses
11 values
total_lines
int64
1
340k
avg_line_length
float64
2.18
149k
max_line_length
int64
7
2.22M
alphanum_fraction
float64
0
1
repo_name
stringlengths
6
65
repo_stars
int64
100
47.3k
repo_forks
int64
0
12k
repo_open_issues
int64
0
3.4k
repo_license
stringclasses
9 values
repo_extraction_date
stringclasses
92 values
exact_duplicates_redpajama
bool
2 classes
near_duplicates_redpajama
bool
2 classes
exact_duplicates_githubcode
bool
2 classes
exact_duplicates_stackv2
bool
1 class
exact_duplicates_stackv1
bool
2 classes
near_duplicates_githubcode
bool
2 classes
near_duplicates_stackv1
bool
2 classes
near_duplicates_stackv2
bool
1 class
4,318
Qv2rayLog.hpp
Qv2ray_Qv2ray/src/base/Qv2rayLog.hpp
#pragma once #include "3rdparty/QJsonStruct/macroexpansion.hpp" #include "base/Qv2rayBaseApplication.hpp" #include "base/models/QvStartupConfig.hpp" #include <QPair> #include <QString> #include <QTextStream> #include <iostream> #ifdef Q_OS_ANDROID #include <android/log.h> #endif #define NEWLINE "\r\n" #define QVLOG...
2,985
C++
.h
91
28.978022
112
0.666667
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,319
JsonHelpers.hpp
Qv2ray_Qv2ray/src/base/JsonHelpers.hpp
#pragma once #define STRINGIZE(arg) STRINGIZE1(arg) #define STRINGIZE1(arg) STRINGIZE2(arg) #define STRINGIZE2(arg) #arg #define CONCATENATE1(arg1, arg2) CONCATENATE2(arg1, arg2) #define CONCATENATE2(arg1, arg2) arg1##arg2 // Add key value pair into JSON named 'root' #define JADDEx(field) root.insert(#field, field);...
369
C++
.h
9
39.666667
57
0.764706
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
true
false
4,320
Qv2rayBaseApplication.hpp
Qv2ray_Qv2ray/src/base/Qv2rayBaseApplication.hpp
#pragma once #include "base/models/QvSettingsObject.hpp" #include <QCoreApplication> #include <QObject> namespace Qv2ray { enum MessageOpt { OK, Cancel, Yes, No, Ignore }; enum Qv2rayExitReason { EXIT_NORMAL = 0, EXIT_NEW_VERSION_TRIGGER = ...
2,114
C++
.h
68
23.455882
139
0.642612
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,321
Qv2rayBase.hpp
Qv2ray_Qv2ray/src/base/Qv2rayBase.hpp
#pragma once // #include <QMap> #include <QtCore> #include <algorithm> #include <ctime> #include <iostream> #include <optional> #include <vector> // Base support. #include "base/JsonHelpers.hpp" #include "base/Qv2rayFeatures.hpp" #include "base/Qv2rayLog.hpp" // Code Models #include "base/Qv2rayBaseApplication.hpp" #in...
2,833
C++
.h
74
37.135135
129
0.79294
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,322
QvSafeType.hpp
Qv2ray_Qv2ray/src/base/models/QvSafeType.hpp
#pragma once #include "3rdparty/QJsonStruct/QJsonStruct.hpp" #include <QJsonArray> #include <QJsonDocument> #include <QJsonObject> #include <QMap> template<typename placeholder, typename BASETYPE_T> class SAFETYPE_IMPL : public BASETYPE_T { public: template<class... Args> explicit SAFETYPE_IMPL(Args... args...
2,995
C++
.h
81
29.790123
150
0.572461
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,323
CoreObjectModels.hpp
Qv2ray_Qv2ray/src/base/models/CoreObjectModels.hpp
#pragma once #include "3rdparty/QJsonStruct/QJsonIO.hpp" #include "3rdparty/QJsonStruct/QJsonStruct.hpp" #include <QList> #include <QMap> #include <QString> namespace Qv2ray::base::objects { struct DNSObject { struct DNSServerObject { bool QV2RAY_DNS_IS_COMPLEX_DNS; QSt...
15,413
C++
.h
392
27.678571
175
0.557658
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,324
QvConfigIdentifier.hpp
Qv2ray_Qv2ray/src/base/models/QvConfigIdentifier.hpp
#pragma once #include "3rdparty/QJsonStruct/QJsonStruct.hpp" #include "QvCoreSettings.hpp" #include <QHash> #include <QHashFunctions> #include <QString> #include <QtCore> namespace Qv2ray::base { template<typename T> class IDType { public: explicit IDType() : m_id("null"){}; explicit...
9,228
C++
.h
246
28.922764
150
0.61925
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,325
QvCoreSettings.hpp
Qv2ray_Qv2ray/src/base/models/QvCoreSettings.hpp
#pragma once #include "QJsonStruct.hpp" #include "base/models/CoreObjectModels.hpp" namespace Qv2ray::base::config { struct QvConfig_Route { struct QvRouteConfig_Impl { QList<QString> direct; QList<QString> block; QList<QString> proxy; QvRouteConf...
6,070
C++
.h
142
33.746479
140
0.653137
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,326
QvRuntimeConfig.hpp
Qv2ray_Qv2ray/src/base/models/QvRuntimeConfig.hpp
#pragma once #define SET_RUNTIME_CONFIG(conf, val) RuntimeConfig.conf = val(); #define RESTORE_RUNTIME_CONFIG(conf, func) func(RuntimeConfig.conf); namespace Qv2ray::base { struct Qv2rayRuntimeConfig { bool screenShotHideQv2ray = false; }; inline base::Qv2rayRuntimeConfig RuntimeConfig = base:...
372
C++
.h
11
30.454545
81
0.754875
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
true
false
4,327
QvComplexConfigModels.hpp
Qv2ray_Qv2ray/src/base/models/QvComplexConfigModels.hpp
#pragma once #include "CoreObjectModels.hpp" #include "QvConfigIdentifier.hpp" #include "QvSafeType.hpp" namespace Qv2ray::base::objects::complex { /***************************************************************** * ROOT * | Original Structures * | ====================== * | ...
4,220
C++
.h
113
30.053097
136
0.547253
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,328
QvSettingsObject.hpp
Qv2ray_Qv2ray/src/base/models/QvSettingsObject.hpp
#pragma once #include "base/models/QvConfigIdentifier.hpp" #include "base/models/QvCoreSettings.hpp" #include "base/models/QvSafeType.hpp" #include <chrono> constexpr int QV2RAY_CONFIG_VERSION = 14; namespace Qv2ray::base::config { struct QvGraphPenConfig { int R = 150, G = 150, B = 150; floa...
8,614
C++
.h
198
34.373737
158
0.651661
Qv2ray/Qv2ray
16,635
3,255
47
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,359
MockAudioObjects.cpp
kyleneideck_BackgroundMusic/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObjects.cpp
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
3,317
C++
.cpp
97
31.113402
96
0.756418
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
4,360
MockAudioDevice.cpp
kyleneideck_BackgroundMusic/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioDevice.cpp
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,596
C++
.cpp
50
29.42
81
0.761564
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
4,361
Mock_CAHALAudioObject.cpp
kyleneideck_BackgroundMusic/BGMApp/BGMAppTests/UnitTests/Mocks/Mock_CAHALAudioObject.cpp
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
6,763
C++
.cpp
176
33.238636
181
0.757252
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
4,362
MockAudioObject.cpp
kyleneideck_BackgroundMusic/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObject.cpp
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,032
C++
.cpp
31
31.709677
75
0.775879
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
4,363
Mock_CAHALAudioDevice.cpp
kyleneideck_BackgroundMusic/BGMApp/BGMAppTests/UnitTests/Mocks/Mock_CAHALAudioDevice.cpp
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
20,757
C++
.cpp
553
35.330922
164
0.841573
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
4,372
BGMPlayThroughRTLogger.cpp
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMPlayThroughRTLogger.cpp
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
17,011
C++
.cpp
440
30.631818
100
0.671073
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
4,373
BGMPlayThrough.cpp
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMPlayThrough.cpp
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
52,176
C++
.cpp
1,044
38.25
130
0.640023
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
4,376
BGMVolumeChangeListener.cpp
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMVolumeChangeListener.cpp
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
3,893
C++
.cpp
86
38.55814
100
0.709728
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
4,377
BGMDeviceControlsList.cpp
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMDeviceControlsList.cpp
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
20,366
C++
.cpp
458
35.779476
101
0.685987
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
true
false
true
false
4,381
BGM_XPCHelper.h
kyleneideck_BackgroundMusic/BGMDriver/BGMDriver/BGM_XPCHelper.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,212
C++
.h
33
35.484848
137
0.772844
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,393
BGM_Clients.h
kyleneideck_BackgroundMusic/BGMDriver/BGMDriver/DeviceClients/BGM_Clients.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
7,058
C++
.h
117
55
169
0.643976
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,396
CADebugMacros.h
kyleneideck_BackgroundMusic/BGMDriver/PublicUtility/CADebugMacros.h
/* File: CADebugMacros.h Abstract: Part of CoreAudio Utility Classes Version: 1.0.1 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this ...
20,219
C++
.h
503
36.518887
218
0.542359
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,408
CADebugger.h
kyleneideck_BackgroundMusic/BGMDriver/PublicUtility/CADebugger.h
/* File: CADebugger.h Abstract: Part of CoreAudio Utility Classes Version: 1.1 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software...
3,108
C++
.h
58
51.5
79
0.721398
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
4,410
CABitOperations.h
kyleneideck_BackgroundMusic/BGMDriver/PublicUtility/CABitOperations.h
/* File: CABitOperations.h Abstract: Part of CoreAudio Utility Classes Version: 1.1 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple sof...
6,196
C++
.h
179
32.810056
83
0.765541
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
4,411
CADebugPrintf.h
kyleneideck_BackgroundMusic/BGMDriver/PublicUtility/CADebugPrintf.h
/* File: CADebugPrintf.h Abstract: Part of CoreAudio Utility Classes Version: 1.0.1 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this ...
4,598
C++
.h
100
42.87
119
0.732886
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
4,414
BGM_TestUtils.h
kyleneideck_BackgroundMusic/SharedSource/BGM_TestUtils.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,442
C++
.h
43
31.465116
89
0.736501
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,415
BGM_Utils.h
kyleneideck_BackgroundMusic/SharedSource/BGM_Utils.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
8,464
C++
.h
173
40.121387
98
0.605732
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,416
BGMXPCProtocols.h
kyleneideck_BackgroundMusic/SharedSource/BGMXPCProtocols.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,911
C++
.h
52
54.576923
139
0.79105
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,419
MockAudioObject.h
kyleneideck_BackgroundMusic/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObject.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,704
C++
.h
47
34.06383
95
0.776628
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,420
MockAudioDevice.h
kyleneideck_BackgroundMusic/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioDevice.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,175
C++
.h
60
33.383333
100
0.747859
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,421
MockAudioObjects.h
kyleneideck_BackgroundMusic/BGMApp/BGMAppTests/UnitTests/Mocks/MockAudioObjects.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
3,280
C++
.h
73
41.493151
100
0.744828
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,422
BGMApp.h
kyleneideck_BackgroundMusic/BGMApp/BGMAppTests/UITests/BGMApp.h
/* * BGMApp.h * * Generated with * sdef "/Applications/Background Music.app" | sdp -fh --basename BGMApp */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class BGMAppOutputDevice, BGMAppApplication; /* * Background Music */ // A hardware device that can play audio @interface BGMAp...
749
C++
.h
22
32.090909
101
0.778401
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,423
BGMXPCListenerDelegate.h
kyleneideck_BackgroundMusic/BGMApp/BGMXPCHelper/BGMXPCListenerDelegate.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,343
C++
.h
30
43.3
131
0.78137
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,424
BGMXPCHelperService.h
kyleneideck_BackgroundMusic/BGMApp/BGMXPCHelper/BGMXPCHelperService.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,236
C++
.h
29
41.344828
116
0.781485
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,425
CADebugMacros.h
kyleneideck_BackgroundMusic/BGMApp/PublicUtility/CADebugMacros.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
21,026
C++
.h
527
36.487666
218
0.554614
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,428
BGMDebugLogging.h
kyleneideck_BackgroundMusic/BGMApp/PublicUtility/BGMDebugLogging.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,390
C++
.h
55
42.2
100
0.764504
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,431
CADebugger.h
kyleneideck_BackgroundMusic/BGMApp/PublicUtility/CADebugger.h
/* File: CADebugger.h Abstract: Part of CoreAudio Utility Classes Version: 1.1 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software...
3,276
C++
.h
65
48.4
95
0.721178
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
4,434
CADebugPrintf.h
kyleneideck_BackgroundMusic/BGMApp/PublicUtility/CADebugPrintf.h
/* File: CADebugPrintf.h Abstract: Part of CoreAudio Utility Classes Version: 1.1 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple softw...
4,438
C++
.h
98
42.816327
102
0.736976
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
4,435
BGMBackgroundMusicDevice.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMBackgroundMusicDevice.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
8,167
C++
.h
164
41.530488
100
0.682976
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,436
BGMStatusBarItem.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMStatusBarItem.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,396
C++
.h
53
43.132075
100
0.784364
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,437
BGMOutputVolumeMenuItem.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMOutputVolumeMenuItem.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,486
C++
.h
37
36.432432
99
0.734353
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,438
BGMAppDelegate.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMAppDelegate.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,972
C++
.h
46
41.5
76
0.801467
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,439
BGMOutputDeviceMenuSection.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMOutputDeviceMenuSection.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,488
C++
.h
35
40.171429
98
0.777393
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,440
BGMPlayThrough.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMPlayThrough.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
10,525
C++
.h
193
44.373057
128
0.633898
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,441
BGMUserDefaults.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMUserDefaults.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,404
C++
.h
51
45.843137
100
0.780582
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,442
BGMAutoPauseMenuItem.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMAutoPauseMenuItem.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,496
C++
.h
37
37.486486
101
0.758978
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,443
BGMAppVolumes.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMAppVolumes.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,535
C++
.h
60
39.016667
107
0.777414
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,444
BGMPreferredOutputDevices.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMPreferredOutputDevices.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,438
C++
.h
52
45.269231
100
0.780539
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,445
BGMAutoPauseMusic.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMAutoPauseMusic.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,351
C++
.h
35
37.285714
113
0.783908
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,446
BGMDeviceControlsList.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMDeviceControlsList.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
5,340
C++
.h
106
44.433962
100
0.711949
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,447
BGMSystemSoundsVolume.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMSystemSoundsVolume.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,200
C++
.h
45
46.133333
99
0.762593
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,448
BGMDeviceControlSync.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMDeviceControlSync.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
4,648
C++
.h
95
40.178947
98
0.672578
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,449
BGMAppVolumesController.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMAppVolumesController.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,777
C++
.h
46
36.173913
92
0.774927
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,450
BGMTermination.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMTermination.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
3,029
C++
.h
65
43.923077
100
0.72613
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,451
BGMDebugLoggingMenuItem.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMDebugLoggingMenuItem.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,786
C++
.h
38
45.736842
99
0.771577
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,453
SystemPreferences.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/SystemPreferences.h
/* * SystemPreferences.h */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class SystemPreferencesItem, SystemPreferencesApplication, SystemPreferencesColor, SystemPreferencesDocument, SystemPreferencesWindow, SystemPreferencesAttributeRun, SystemPreferencesCharacter, SystemPreferencesParag...
9,470
C++
.h
174
52.856322
377
0.777356
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
4,454
BGMAppWatcher.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMAppWatcher.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,849
C++
.h
39
44.025641
100
0.751667
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,455
BGMAudioDeviceManager.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMAudioDeviceManager.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
4,158
C++
.h
86
45.976744
102
0.780084
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,456
BGMXPCListener.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMXPCListener.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,413
C++
.h
34
40.235294
128
0.784357
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,457
BGMPlayThroughRTLogger.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMPlayThroughRTLogger.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
9,229
C++
.h
184
41.516304
100
0.636858
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,458
BGMVolumeChangeListener.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/BGMVolumeChangeListener.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,723
C++
.h
46
35.130435
100
0.75601
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,459
BGMAppDelegate+AppleScript.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Scripting/BGMAppDelegate+AppleScript.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,390
C++
.h
36
37.222222
78
0.788806
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,460
BGMASApplication.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Scripting/BGMASApplication.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,528
C++
.h
40
34.95
89
0.748645
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,461
BGMASOutputDevice.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Scripting/BGMASOutputDevice.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,444
C++
.h
35
38.542857
93
0.761087
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,462
VOX.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/VOX.h
/* * VOX.h * * Generated with * sdef /Applications/VOX.app | sdp -fh --basename VOX */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class VoxApplication, VoxApplication; /* * Standard Suite */ // The application's top level scripting object. @interface VoxApplication : SBApplicat...
2,618
C++
.h
53
47.90566
99
0.737441
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
4,463
BGMVLC.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMVLC.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
892
C++
.h
24
35.916667
75
0.767981
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,464
BGMDecibel.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMDecibel.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
900
C++
.h
24
36.25
75
0.770115
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,465
BGMScriptingBridge.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMScriptingBridge.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,697
C++
.h
55
47.781818
105
0.783866
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,466
BGMMusicPlayer.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayer.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
7,213
C++
.h
130
52.061538
100
0.745359
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,467
BGMMusicPlayers.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusicPlayers.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,247
C++
.h
49
42.836735
104
0.773455
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,468
BGMSpotify.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMSpotify.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
900
C++
.h
24
36.25
75
0.770115
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,469
Decibel.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/Decibel.h
/* * Decibel.h * * Generated with * sdef /Applications/Decibel.app | sdp -fh --basename Decibel */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class DecibelApplication, DecibelDocument, DecibelWindow, DecibelApplication, DecibelTrack; enum DecibelSaveOptions { DecibelSaveOptionsYes ...
7,810
C++
.h
143
53.188811
119
0.757111
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,470
VLC.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/VLC.h
/* * VLC.h * * Generated with * sdef /Applications/VLC.app | sdp -fh --basename VLC */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class VLCItem, VLCApplication, VLCColor, VLCDocument, VLCWindow, VLCAttributeRun, VLCCharacter, VLCParagraph, VLCText, VLCAttachment, VLCWord, VLCPrintSet...
9,346
C++
.h
176
51.5625
161
0.751237
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,471
BGMiTunes.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMiTunes.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,152
C++
.h
27
41.407407
123
0.775492
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,472
Hermes.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/Hermes.h
/* * Hermes.h * * Generated with * sdef /Applications/Hermes.app | sdp -fh --basename Hermes */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class HermesApplication, HermesSong, HermesStation; // Legal player states enum HermesPlayerStates { HermesPlayerStatesStopped = 'stop' /* Play...
3,167
C++
.h
57
53.596491
264
0.754649
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,473
Music.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/Music.h
/* * Music.h * * Generated with * sdef /System/Applications/Music.app | sdp -fh --basename Music */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class MusicApplication, MusicItem, MusicAirPlayDevice, MusicArtwork, MusicEncoder, MusicEQPreset, MusicPlaylist, MusicAudioCDPlaylist, MusicL...
23,439
C++
.h
419
54.46778
465
0.765729
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
4,474
Spotify.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/Spotify.h
/* * Spotify.h * * Generated with * sdef /Applications/Spotify.app | sdp -fh --basename Spotify */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class SpotifyApplication, SpotifyTrack, SpotifyApplication; enum SpotifyEPlS { SpotifyEPlSStopped = 'kPSS', SpotifyEPlSPlaying = 'kPSP', S...
2,923
C++
.h
60
47.15
117
0.753256
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
true
true
false
false
false
false
false
false
4,475
Swinsian.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/Swinsian.h
/* * Swinsian.h * * Generated with * sdef /Applications/Swinsian.app | sdp -fh --basename Swinsian */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class SwinsianItem, SwinsianColor, SwinsianWindow, SwinsianApplication, SwinsianPlaylist, SwinsianLibrary, SwinsianTrack, SwinsianLibraryTr...
9,792
C++
.h
177
53.813559
277
0.760063
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,476
BGMGooglePlayMusicDesktopPlayer.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayer.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,741
C++
.h
37
45.810811
100
0.789971
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,477
BGMMusic.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMMusic.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,002
C++
.h
27
35.740741
75
0.772021
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,478
BGMVOX.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMVOX.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
892
C++
.h
24
35.916667
75
0.767981
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,479
BGMGooglePlayMusicDesktopPlayerConnection.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMGooglePlayMusicDesktopPlayerConnection.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
2,397
C++
.h
51
44.862745
99
0.75868
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,480
iTunes.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/iTunes.h
/* * iTunes.h * * Generated with * sdef /Applications/iTunes.app | sdp -fh --basename iTunes */ #import <AppKit/AppKit.h> #import <ScriptingBridge/ScriptingBridge.h> @class iTunesPrintSettings, iTunesApplication, iTunesItem, iTunesAirPlayDevice, iTunesArtwork, iTunesEncoder, iTunesEQPreset, iTunesPlaylist, iTun...
23,110
C++
.h
408
55.183824
441
0.763466
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
4,481
BGMHermes.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMHermes.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
898
C++
.h
24
36.166667
75
0.769585
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,482
BGMSwinsian.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Music Players/BGMSwinsian.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
972
C++
.h
26
36.076923
75
0.776119
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,483
BGMPreferencesMenu.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Preferences/BGMPreferencesMenu.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,523
C++
.h
39
36.717949
113
0.774763
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,484
BGMAutoPauseMusicPrefs.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Preferences/BGMAutoPauseMusicPrefs.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,224
C++
.h
32
35.78125
75
0.765651
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,485
BGMAboutPanel.h
kyleneideck_BackgroundMusic/BGMApp/BGMApp/Preferences/BGMAboutPanel.h
// This file is part of Background Music. // // Background Music is free software: you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation, either version 2 of the // License, or (at your option) any later version. // // Background Mu...
1,131
C++
.h
32
34
92
0.773897
kyleneideck/BackgroundMusic
15,929
676
482
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,486
CutterApplication.cpp
rizinorg_cutter/src/CutterApplication.cpp
#include "common/PythonManager.h" #include "CutterApplication.h" #include "plugins/PluginManager.h" #include "CutterConfig.h" #include "common/Decompiler.h" #include "common/ResourcePaths.h" #include <QApplication> #include <QFileOpenEvent> #include <QEvent> #include <QMenu> #include <QMessageBox> #include <QCommandLi...
21,417
C++
.cpp
535
31.016822
100
0.614505
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,487
Main.cpp
rizinorg_cutter/src/Main.cpp
#include "CutterApplication.h" #include "core/MainWindow.h" #include "common/UpdateWorker.h" #include "CutterConfig.h" #include "common/SettingsUpgrade.h" #include <QJsonObject> #include <QJsonArray> #include <iostream> /** * @brief Attempt to connect to a parent console and configure outputs. */ #ifdef Q_OS_WIN #...
3,513
C++
.cpp
90
31.977778
95
0.648839
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,488
MainWindow.cpp
rizinorg_cutter/src/core/MainWindow.cpp
#include "core/MainWindow.h" #include "ui_MainWindow.h" // Common Headers #include "common/AnalysisTask.h" #include "common/BugReporting.h" #include "common/Highlighter.h" #include "common/Helpers.h" #include "common/SvgIconEngine.h" #include "common/ProgressIndicator.h" #include "common/TempConfig.h" #include "common...
65,050
C++
.cpp
1,758
30.843572
100
0.672461
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,489
Basefind.cpp
rizinorg_cutter/src/core/Basefind.cpp
#include "Basefind.h" bool Basefind::threadCallback(const RzBaseFindThreadInfo *info, void *user) { auto th = reinterpret_cast<Basefind *>(user); return th->updateProgress(info); } Basefind::Basefind(CutterCore *core) : core(core), scores(nullptr), continue_run(true) #if QT_VERSION < QT_VERSIO...
2,731
C++
.cpp
95
23.989474
76
0.667429
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,490
Cutter.cpp
rizinorg_cutter/src/core/Cutter.cpp
#include <QJsonArray> #include <QJsonObject> #include <QRegularExpression> #include <QDir> #include <QCoreApplication> #include <QVector> #include <QStringList> #include <QStandardPaths> #include <cassert> #include <memory> #include "common/TempConfig.h" #include "common/BasicInstructionHighlighter.h" #include "commo...
129,571
C++
.cpp
4,127
24.712382
100
0.614286
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,491
CutterJson.cpp
rizinorg_cutter/src/core/CutterJson.cpp
#include "core/CutterJson.h" CutterJson CutterJson::last() const { if (!has_children()) { return CutterJson(); } const RzJson *last = value->children.first; while (last->next) { last = last->next; } return CutterJson(last, owner); } QStringList CutterJson::keys() const { ...
550
C++
.cpp
22
19.909091
87
0.613027
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,492
EditVariablesDialog.cpp
rizinorg_cutter/src/dialogs/EditVariablesDialog.cpp
#include "EditVariablesDialog.h" #include "ui_EditVariablesDialog.h" #include <QMetaType> #include <QComboBox> #include <QMetaType> #include <QPushButton> EditVariablesDialog::EditVariablesDialog(RVA offset, QString initialVar, QWidget *parent) : QDialog(parent), ui(new Ui::EditVariablesDialog), functionAddress(R...
4,027
C++
.cpp
104
32.759615
99
0.67955
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,493
EditInstructionDialog.cpp
rizinorg_cutter/src/dialogs/EditInstructionDialog.cpp
#include "EditInstructionDialog.h" #include "ui_EditInstructionDialog.h" #include "core/Cutter.h" #include <QCheckBox> EditInstructionDialog::EditInstructionDialog(InstructionEditMode editMode, QWidget *parent) : QDialog(parent), ui(new Ui::EditInstructionDialog), editMode(editMode) { ui->setupUi(this); u...
2,083
C++
.cpp
61
29.721311
95
0.706819
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,494
InitialOptionsDialog.cpp
rizinorg_cutter/src/dialogs/InitialOptionsDialog.cpp
#include "common/AsyncTask.h" #include "InitialOptionsDialog.h" #include "ui_InitialOptionsDialog.h" #include "core/MainWindow.h" #include "dialogs/NewFileDialog.h" #include "dialogs/AsyncTaskDialog.h" #include "common/Helpers.h" #include <QSettings> #include <QFileInfo> #include <QFileDialog> #include <QCloseEvent> ...
15,390
C++
.cpp
414
31.427536
96
0.671658
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,495
AboutDialog.cpp
rizinorg_cutter/src/dialogs/AboutDialog.cpp
#include "core/Cutter.h" #include "AboutDialog.h" #include "ui_AboutDialog.h" #include "RizinPluginsDialog.h" #include "common/Configuration.h" #include "common/BugReporting.h" #include <QUrl> #include <QTimer> #include <QEventLoop> #include <QJsonObject> #include <QProgressBar> #include <QProgressDialog> #include <U...
5,077
C++
.cpp
137
29.613139
99
0.626702
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
4,496
MultitypeFileSaveDialog.cpp
rizinorg_cutter/src/dialogs/MultitypeFileSaveDialog.cpp
#include "CutterConfig.h" #include "MultitypeFileSaveDialog.h" #include <QMessageBox> MultitypeFileSaveDialog::MultitypeFileSaveDialog(QWidget *parent, const QString &caption, const QString &directory) : QFileDialog(parent, caption, directory) { this->setAccep...
3,381
C++
.cpp
92
29.195652
98
0.632012
rizinorg/cutter
15,656
1,143
512
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false