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
42,240
03-sum.cpp
gatieme_CodingInterviews/031-连续子数组的最大和/03-sum.cpp
#include <iostream> #include <vector> #include <iterator> #include <climits> using namespace std; // 调试开关 #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public: int FindGreatestSumOfSubArray(vector<int> ...
1,896
C++
.cpp
63
19.619048
78
0.491323
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,241
01-bruteforce.cpp
gatieme_CodingInterviews/031-连续子数组的最大和/01-bruteforce.cpp
#include <iostream> #include <vector> #include <iterator> #include <climits> using namespace std; // 调试开关 #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public: int FindGreatestSumOfSubArray(vector<int> arra...
1,604
C++
.cpp
56
19.928571
78
0.480511
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,242
03-count.cpp
gatieme_CodingInterviews/035-第一个只出现一次的字符位置/03-count.cpp
#include <iostream> #include <cstring> using namespace std; #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { protected: int count[256]; public: int FirstNotRepeatingChar(string str) { i...
1,220
C++
.cpp
51
15
57
0.47301
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,243
01-bruteforce.cpp
gatieme_CodingInterviews/035-第一个只出现一次的字符位置/01-bruteforce.cpp
#include <iostream> #include <iomanip> using namespace std; #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public: int FirstNotRepeatingChar(string str) { if(str.length( ) == 0) { ...
1,668
C++
.cpp
60
14.966667
80
0.377358
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,244
02-bitmap.cpp
gatieme_CodingInterviews/035-第一个只出现一次的字符位置/02-bitmap.cpp
#include <iostream> #include <cstring> using namespace std; #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public: int FirstNotRepeatingChar(string str) { int x[26] = {0}, y[26] = {0}; ...
2,022
C++
.cpp
72
14.513889
65
0.316108
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,245
jumpFloor.cpp
gatieme_CodingInterviews/009-斐波那契数列/jumpFloor.cpp
#include <iostream> using namespace std; // µ÷ÊÔ¿ª¹Ø #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public: int jumpFloor(int n) { if(n <= 2) { return n; } ...
661
C++
.cpp
36
11.194444
38
0.453469
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,246
jumpFloorII-3.cpp
gatieme_CodingInterviews/009-斐波那契数列/jumpFloorII-3.cpp
#include <iostream> using namespace std; // 调试开关 #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public : int jumpFloorII(int target) { long long ret; if(target >= 32)//大于8字节后,需要分两次移位,否则出错 { ...
598
C++
.cpp
33
12.333333
40
0.547758
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,248
fibonacci_2.cpp
gatieme_CodingInterviews/009-斐波那契数列/fibonacci_2.cpp
#include <iostream> using namespace std; // µ÷ÊÔ¿ª¹Ø #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public: int Fibonacci(int n) { if(n <= 1) { return n; } ...
657
C++
.cpp
36
11.194444
38
0.453469
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,249
jumpFloorII-2.cpp
gatieme_CodingInterviews/009-斐波那契数列/jumpFloorII-2.cpp
#include <iostream> #include <cmath> using namespace std; // µ÷ÊÔ¿ª¹Ø #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public : int jumpFloorII(int target) { if (target <= 0) { ...
536
C++
.cpp
31
11.354839
40
0.521921
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,250
rectCover.cpp
gatieme_CodingInterviews/009-斐波那契数列/rectCover.cpp
#include <iostream> using namespace std; // µ÷ÊÔ¿ª¹Ø #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public: int rectCover(int n) { if(n == 0) { return 1; } ...
734
C++
.cpp
40
10.75
38
0.430091
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,251
fibonacci_1.cpp
gatieme_CodingInterviews/009-斐波那契数列/fibonacci_1.cpp
#include <iostream> using namespace std; // µ÷ÊÔ¿ª¹Ø #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public: int Fibonacci(int n) { if(n <= 1) { return n; } ...
516
C++
.cpp
30
11.2
56
0.508658
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,252
jumpFloorII.cpp
gatieme_CodingInterviews/009-斐波那契数列/jumpFloorII.cpp
#include <iostream> using namespace std; // µ÷ÊÔ¿ª¹Ø #define __tmain main #ifdef __tmain #define debug cout #else #define debug 0 && cout #endif // __tmain class Solution { public : int jumpFloorII(int target) { if (target <= 0) { return -1; ...
605
C++
.cpp
34
11.088235
48
0.489871
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,254
list.h
gatieme_CodingInterviews/ChineseCodingInterviewAppendix-master/Utilities/list.h
#pragma once struct ListNode { int m_nValue; ListNode* m_pNext; }; __declspec( dllexport ) ListNode* CreateListNode(int value); __declspec( dllexport ) void ConnectListNodes(ListNode* pCurrent, ListNode* pNext); __declspec( dllexport ) void PrintListNode(ListNode* pNode); __declspec( dllexport ) void Pr...
543
C++
.h
13
40.076923
83
0.754253
gatieme/CodingInterviews
4,829
1,127
10
GPL-3.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
true
false
false
false
false
false
false
42,269
compound_style.cpp
LibreSprite_LibreSprite/src/css/compound_style.cpp
// Aseprite CSS Library // Copyright (C) 2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "css/compound_style.h" #include "css/sheet.h" namespace css { CompoundStyle::CompoundStyle(S...
1,356
C++
.cpp
55
22.036364
79
0.698524
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,270
sheet.cpp
LibreSprite_LibreSprite/src/css/sheet.cpp
// Aseprite CSS Library // Copyright (C) 2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "css/sheet.h" #include "css/compound_style.h" #include "css/query.h" #include "css/stateful_st...
2,356
C++
.cpp
91
22.571429
83
0.659394
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,271
css_tests.cpp
LibreSprite_LibreSprite/src/css/css_tests.cpp
// Aseprite CSS Library // Copyright (C) 2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #include <gtest/gtest.h> #include "css/css.h" using namespace css; namespace css { std::ostream& operator<<(std::ostream& os, const Value& value) ...
7,111
C++
.cpp
213
30.366197
72
0.681447
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,272
query.cpp
LibreSprite_LibreSprite/src/css/query.cpp
// Aseprite CSS Library // Copyright (C) 2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "css/query.h" namespace css { void Query::addFromStyle(const Style* style) { for (Style::co...
618
C++
.cpp
23
24.608696
73
0.712095
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,273
value.cpp
LibreSprite_LibreSprite/src/css/value.cpp
// Aseprite CSS Library // Copyright (C) 2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "css/value.h" namespace css { Value::Value() : m_type(None) { } Value::Value(double value,...
1,551
C++
.cpp
83
15.86747
70
0.656531
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,274
style.cpp
LibreSprite_LibreSprite/src/css/style.cpp
// Aseprite CSS Library // Copyright (C) 2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "css/style.h" namespace css { Style::Style(const std::string& name, const Style* base) : ...
373
C++
.cpp
15
23.133333
60
0.732194
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,275
rule.cpp
LibreSprite_LibreSprite/src/css/rule.cpp
// Aseprite CSS Library // Copyright (C) 2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "css/rule.h" namespace css { Rule::Rule(const std::string& name) : m_name(name) { } } // n...
333
C++
.cpp
15
20.733333
60
0.738019
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,276
cout_delegate.cpp
LibreSprite_LibreSprite/src/script/cout_delegate.cpp
#include "engine_delegate.h" class StdoutEngineDelegate : public script::EngineDelegate { public: void onConsolePrint(const char* text) override { printf("%s\n", text); } }; static script::EngineDelegate::Singleton<StdoutEngineDelegate> reg("stdout");
262
C++
.cpp
8
30.5
77
0.769841
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,277
engine.cpp
LibreSprite_LibreSprite/src/script/duktape/engine.cpp
// Aseprite Scripting Library // Copyright (C) 2021 LibreSprite contributors // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include <iostream> #include <map> #include <string> #include <unordered_map> #includ...
9,624
C++
.cpp
300
26.526667
104
0.613136
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
42,278
engine.cpp
LibreSprite_LibreSprite/src/script/v8/engine.cpp
// LibreSprite Scripting Library // Copyright (C) 2021 LibreSprite contributors // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #if SCRIPT_ENGINE_V8 #include "base/convert_to.h" #include "base/exception.h" #in...
12,035
C++
.cpp
320
31.14375
118
0.631656
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,286
hsv.cpp
LibreSprite_LibreSprite/src/gfx/hsv.cpp
// Aseprite Gfx Library // Copyright (C) 2001-2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/hsv.h" #include "gfx/rgb.h" #include <cmath> namespace gfx { using namespace std; ...
1,824
C++
.cpp
76
20.855263
60
0.581167
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
true
false
42,289
clip.cpp
LibreSprite_LibreSprite/src/gfx/clip.cpp
// Aseprite Gfx Library // Copyright (c) 2001-2014 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/clip.h" namespace gfx { bool Clip::clip( int avail_dst_w, int avail_dst_h, in...
1,101
C++
.cpp
49
19.081633
60
0.570878
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,290
sdl2_display.cpp
LibreSprite_LibreSprite/src/she/sdl2/sdl2_display.cpp
// SHE library // Copyright (C) 2021 LibreSprite contributors // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #define EASYTAB_IMPLEMENTATION #include "she/she.h" #include "she/system.h" #include "base/concurre...
9,947
C++
.cpp
347
24.317003
111
0.671282
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
42,291
she.cpp
LibreSprite_LibreSprite/src/she/sdl2/she.cpp
// SHE library // Copyright (C) 2021 LibreSprite contributors // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "she/she.h" #include "base/concurrent_queue.h" #include "base/exception.h" #include "base/st...
26,662
C++
.cpp
836
26
112
0.628543
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,292
sdl2_surface.cpp
LibreSprite_LibreSprite/src/she/sdl2/sdl2_surface.cpp
// SHE library // Copyright (C) 2021 LibreSprite contributors // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "she/sdl2/sdl2_surface.h" #include "base/string.h" #include "gfx/point.h" #include "gfx/rect...
14,625
C++
.cpp
461
25.845987
110
0.575644
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,293
native_dialogs.cpp
LibreSprite_LibreSprite/src/she/gtk/native_dialogs.cpp
// GTK Component of SHE library // Copyright (C) 2016 Gabriel Rauter // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. //disable EMPTY_STRING macro already set in allegro, enabling it at the end of file #pragma push_macro("EMPTY_STRING") #undef EMPTY_STRING #ifd...
5,692
C++
.cpp
167
29.730539
98
0.680247
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,294
freetype_font.cpp
LibreSprite_LibreSprite/src/she/common/freetype_font.cpp
// SHE library // Copyright (C) 2016 David Capello // Copyright (C) 2021 LibreSprite contributors // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "she/common/freetype_font.h" #include "base/string.h" ...
1,534
C++
.cpp
69
20.304348
64
0.745342
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,296
native_dialogs.cpp
LibreSprite_LibreSprite/src/she/win/native_dialogs.cpp
// SHE library // Copyright (C) 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "she/win/native_dialogs.h" #include "base/path.h" #include "base/string.h" #include "she/display.h" #i...
4,222
C++
.cpp
143
25.083916
89
0.667161
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,299
replace_color_filter.cpp
LibreSprite_LibreSprite/src/filters/replace_color_filter.cpp
// Aseprite // Copyright (C) 2001-2016 David Capello // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "filters/replace_...
5,686
C++
.cpp
180
27.194444
73
0.612055
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,300
convolution_matrix_filter.cpp
LibreSprite_LibreSprite/src/filters/convolution_matrix_filter.cpp
// Aseprite // Copyright (C) 2001-2016 David Capello // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "filters/convolut...
9,329
C++
.cpp
284
25.588028
90
0.591744
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,301
convolution_matrix.cpp
LibreSprite_LibreSprite/src/filters/convolution_matrix.cpp
// Aseprite // Copyright (C) 2001-2015 David Capello // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "filters/convolut...
626
C++
.cpp
23
25.304348
71
0.742475
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,302
color_curve.cpp
LibreSprite_LibreSprite/src/filters/color_curve.cpp
// Aseprite // Copyright (C) 2001-2015 David Capello // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "filters/color_cu...
1,861
C++
.cpp
73
19.739726
71
0.526256
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,303
invert_color_filter.cpp
LibreSprite_LibreSprite/src/filters/invert_color_filter.cpp
// Aseprite // Copyright (C) 2001-2015 David Capello // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "filters/invert_c...
3,143
C++
.cpp
101
27.128713
73
0.644562
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,304
median_filter.cpp
LibreSprite_LibreSprite/src/filters/median_filter.cpp
// Aseprite // Copyright (C) 2001-2015 David Capello // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "filters/median_f...
7,378
C++
.cpp
236
25.995763
108
0.616664
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,305
color_curve_filter.cpp
LibreSprite_LibreSprite/src/filters/color_curve_filter.cpp
// Aseprite // Copyright (C) 2001-2016 David Capello // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "filters/color_cu...
3,634
C++
.cpp
120
26.541667
73
0.645134
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,307
cfg.cpp
LibreSprite_LibreSprite/src/cfg/cfg.cpp
// Aseprite Config Library // Copyright (c) 2014-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "cfg/cfg.h" #include "base/file_handle.h" #include "base/log.h" #include "base/string....
6,786
C++
.cpp
239
24.920502
100
0.681224
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
42,308
combobox.cpp
LibreSprite_LibreSprite/src/ui/combobox.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/size.h" #include "she/font.h" #include "ui/ui.h" namespace ui { using namespace gfx...
14,929
C++
.cpp
543
22.572744
80
0.636402
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,309
box.cpp
LibreSprite_LibreSprite/src/ui/box.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/size.h" #include "ui/box.h" #include "ui/message.h" #include "ui/size_hint_even...
5,292
C++
.cpp
136
31.669118
73
0.377215
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,310
resize_event.cpp
LibreSprite_LibreSprite/src/ui/resize_event.cpp
// Aseprite UI Library // Copyright (C) 2001-2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/resize_event.h" #include "ui/widget.h" namespace ui { using namespace gfx; ResizeEv...
440
C++
.cpp
18
22.888889
65
0.75
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,311
property.cpp
LibreSprite_LibreSprite/src/ui/property.cpp
// Aseprite UI Library // Copyright (C) 2001-2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #include "ui/property.h" namespace ui { Property::Property(const std::string& name) : m_name(name) { } Property::~Property() { } std::string P...
385
C++
.cpp
19
18.736842
60
0.733333
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,312
slider.cpp
LibreSprite_LibreSprite/src/ui/slider.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #include <string> #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/slider.h" #include "she/font.h" #include "ui/manager.h" #incl...
5,440
C++
.cpp
206
21.131068
74
0.616052
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,313
widget.cpp
LibreSprite_LibreSprite/src/ui/widget.cpp
// Aseprite | Copyright (C) 2001-2016 David Capello // LibreSprite | Copyright (C) 2021 LibreSprite contributors // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. // #define REPORT_SIGNALS #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/w...
32,543
C++
.cpp
1,266
21.793049
106
0.628361
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,314
int_entry.cpp
LibreSprite_LibreSprite/src/ui/int_entry.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/int_entry.h" #include "base/scoped_value.h" #include "gfx/rect.h" #include "gfx/regio...
5,098
C++
.cpp
181
23.524862
93
0.652789
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,315
move_region.cpp
LibreSprite_LibreSprite/src/ui/move_region.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/manager.h" #include "she/display.h" #include "she/surface.h" #include "she/system.h" ...
1,772
C++
.cpp
59
25.864407
72
0.626471
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,316
viewport.cpp
LibreSprite_LibreSprite/src/ui/viewport.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/point.h" #include "gfx/size.h" #include "ui/message.h" #include "ui/size_hint_e...
1,543
C++
.cpp
59
23.355932
60
0.676892
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,317
intern.cpp
LibreSprite_LibreSprite/src/ui/intern.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/manager.h" #include "ui/theme.h" #include "ui/widget.h" #include "ui/window.h" ...
1,270
C++
.cpp
56
20.464286
64
0.708333
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,318
listitem.cpp
LibreSprite_LibreSprite/src/ui/listitem.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/listitem.h" #include "ui/message.h" #include "ui/size_hint_event.h" #include "u...
1,286
C++
.cpp
53
21.830189
60
0.700904
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,319
message_loop.cpp
LibreSprite_LibreSprite/src/ui/message_loop.cpp
// Aseprite UI Library // Copyright (C) 2001-2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/message_loop.h" #include "ui/manager.h" #include "she/system.h" namespace ui { Mess...
593
C++
.cpp
26
20.846154
60
0.726786
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
false
false
false
42,320
menu.cpp
LibreSprite_LibreSprite/src/ui/menu.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/size.h" #include "she/font.h" #include "ui/intern.h" #include "ui/keys.h" #include "u...
32,428
C++
.cpp
1,022
24.844423
162
0.593642
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,321
scroll_helper.cpp
LibreSprite_LibreSprite/src/ui/scroll_helper.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/scroll_bar.h" namespace ui { void setup_scrollbars(const gfx::Size& scrollable...
2,211
C++
.cpp
69
25.753623
66
0.609676
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,322
popup_window.cpp
LibreSprite_LibreSprite/src/ui/popup_window.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/size.h" #include "ui/graphics.h" #include "ui/intern.h" #include "ui/size_hint_...
5,787
C++
.cpp
198
23.757576
74
0.656865
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,323
separator.cpp
LibreSprite_LibreSprite/src/ui/separator.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/separator.h" #include "gfx/size.h" #include "ui/message.h" #include "ui/size_hi...
1,116
C++
.cpp
44
22.931818
60
0.695652
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,324
theme.cpp
LibreSprite_LibreSprite/src/ui/theme.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/point.h" #include "gfx/size.h" #include "she/font.h" #include "she/system.h" #i...
4,886
C++
.cpp
193
20.352332
82
0.559304
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,325
tooltips.cpp
LibreSprite_LibreSprite/src/ui/tooltips.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/tooltips.h" #include "app/modules/i18n.h" #include "gfx/size.h" #include "ui/gra...
6,258
C++
.cpp
230
22
91
0.618729
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,326
alert.cpp
LibreSprite_LibreSprite/src/ui/alert.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. /*********************************************************************** Alert format: ------------ "Title Text" "==Centre lin...
5,840
C++
.cpp
203
24.049261
100
0.564355
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,327
scroll_bar.cpp
LibreSprite_LibreSprite/src/ui/scroll_bar.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/size.h" #include "ui/message.h" #include "ui/scroll_bar.h" #include "ui/theme.h...
5,213
C++
.cpp
184
22.625
91
0.577724
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,328
system.cpp
LibreSprite_LibreSprite/src/ui/system.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/system.h" #include "gfx/point.h" #include "she/display.h" #include "she/surface.h" #i...
5,997
C++
.cpp
212
24.773585
72
0.708188
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,329
timer.cpp
LibreSprite_LibreSprite/src/ui/timer.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/timer.h" #include "base/time.h" #include "ui/manager.h" #include "ui/message.h" #incl...
1,970
C++
.cpp
82
20.95122
81
0.661844
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,330
entry.cpp
LibreSprite_LibreSprite/src/ui/entry.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/entry.h" #include "base/bind.h" #include "base/string.h" #include "clip/clip.h" #incl...
18,073
C++
.cpp
673
20.268945
87
0.555594
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,331
image_view.cpp
LibreSprite_LibreSprite/src/ui/image_view.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // Copyright (C) 2024 LibreSprite contributors // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/image_view.h" #include "she/surface.h...
1,395
C++
.cpp
53
23.641509
93
0.688956
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,332
manager.cpp
LibreSprite_LibreSprite/src/ui/manager.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. // #define REPORT_EVENTS // #define DEBUG_PAINT_EVENTS // #define LIMIT_DISPATCH_TIME #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ap...
42,259
C++
.cpp
1,407
24.071073
97
0.609994
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,333
splitter.cpp
LibreSprite_LibreSprite/src/ui/splitter.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/splitter.h" #include "ui/load_layout_event.h" #include "ui/manager.h" #include "ui/me...
9,005
C++
.cpp
297
22.56229
74
0.428076
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,334
overlay.cpp
LibreSprite_LibreSprite/src/ui/overlay.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/overlay.h" #include "she/surface.h" #include "she/system.h" #include "ui/manager.h" ...
2,361
C++
.cpp
86
22.918605
88
0.637533
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,335
window.cpp
LibreSprite_LibreSprite/src/ui/window.cpp
// Aseprite UI Library // Copyright (C) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "app/task_manager.h" #include "gfx/rect.h" #include "gfx/size.h" #include "ui/graphics.h" ...
13,893
C++
.cpp
488
22.909836
74
0.616842
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,336
overlay_manager.cpp
LibreSprite_LibreSprite/src/ui/overlay_manager.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015, 2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/overlay_manager.h" #include "she/display.h" #include "she/surface.h" #inc...
2,098
C++
.cpp
78
24.615385
69
0.7415
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,337
textbox.cpp
LibreSprite_LibreSprite/src/ui/textbox.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/textbox.h" #include "gfx/size.h" #include "ui/intern.h" #include "ui/message.h"...
4,183
C++
.cpp
152
20.328947
81
0.568244
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,338
accelerator.cpp
LibreSprite_LibreSprite/src/ui/accelerator.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/accelerator.h" #include "base/debug.h" #include "base/replace_string.h" #include "bas...
12,834
C++
.cpp
452
23.298673
97
0.567191
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,339
cursor.cpp
LibreSprite_LibreSprite/src/ui/cursor.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/cursor.h" #include "base/debug.h" #include "she/surface.h" namespace ui { Cursor::C...
518
C++
.cpp
23
20.869565
62
0.72541
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,340
accelerator_ui_tests.cpp
LibreSprite_LibreSprite/src/ui/accelerator_ui_tests.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #define TEST_GUI #include "tests/test.h" using namespace ui; TEST(Accelerator, Parser) { EXPECT_EQ(Accelerator(kKeyNoneModifier, kKeyF1, '...
3,282
C++
.cpp
48
65.791667
108
0.730626
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,341
view.cpp
LibreSprite_LibreSprite/src/ui/view.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. // #define DEBUG_SCROLL_EVENTS #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gfx/size.h" #include "ui/intern.h" #include "ui/manager.h...
8,546
C++
.cpp
299
24.789298
74
0.685194
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,342
message.cpp
LibreSprite_LibreSprite/src/ui/message.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/message.h" #include "base/memory.h" #include "ui/manager.h" #include "ui/widget...
2,203
C++
.cpp
75
25.48
103
0.688773
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,343
register_message.cpp
LibreSprite_LibreSprite/src/ui/register_message.cpp
// Aseprite UI Library // Copyright (C) 2001-2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/register_message.h" namespace ui { static int registered_messages = (int)kFirstRegis...
440
C++
.cpp
16
26
62
0.77512
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,344
paint_event.cpp
LibreSprite_LibreSprite/src/ui/paint_event.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/paint_event.h" #include "ui/widget.h" namespace ui { PaintEvent::PaintEvent(Wi...
717
C++
.cpp
32
20.65625
66
0.742984
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,345
graphics.cpp
LibreSprite_LibreSprite/src/ui/graphics.cpp
// Aseprite UI Library // Copyright (C) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/graphics.h" #include "base/string.h" #include "gfx/clip.h" #include "gfx/point.h" #in...
10,470
C++
.cpp
334
27.577844
136
0.639074
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,346
listbox.cpp
LibreSprite_LibreSprite/src/ui/listbox.cpp
// Aseprite UI Library // Copyright (C) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/listbox.h" #include "base/path.h" #include "ui/listitem.h" #include "ui/message.h" #i...
7,175
C++
.cpp
264
20.776515
81
0.576435
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,347
size_hint_event.cpp
LibreSprite_LibreSprite/src/ui/size_hint_event.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/size_hint_event.h" #include "ui/widget.h" namespace ui { using namespace gfx; ...
1,367
C++
.cpp
62
19.919355
69
0.737209
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,348
grid.cpp
LibreSprite_LibreSprite/src/ui/grid.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "base/memory.h" #include "gfx/size.h" #include "ui/grid.h" #include "ui/message.h" #...
14,708
C++
.cpp
480
23.970833
103
0.56062
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,349
panel.cpp
LibreSprite_LibreSprite/src/ui/panel.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/panel.h" #include "ui/resize_event.h" #include "ui/size_hint_event.h" namespac...
1,306
C++
.cpp
53
21.679245
60
0.672316
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,350
label.cpp
LibreSprite_LibreSprite/src/ui/label.cpp
// Aseprite UI Library // Copyright (C) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "she/font.h" #include "ui/label.h" #include "ui/message.h" #include "ui/size_hint_event.h"...
850
C++
.cpp
38
20.210526
60
0.688279
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,351
custom_label.cpp
LibreSprite_LibreSprite/src/ui/custom_label.cpp
// Aseprite UI Library // Copyright (C) 2001-2013 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/custom_label.h" namespace ui { CustomLabel::CustomLabel(const std::string& text) :...
449
C++
.cpp
19
22.105263
60
0.761792
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,352
button.cpp
LibreSprite_LibreSprite/src/ui/button.cpp
// Aseprite UI Library // Copyright (C) 2001-2013, 2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #include "she/keys.h" #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/button.h" #include "ui/manager.h" #include "ui/message.h" ...
9,261
C++
.cpp
324
21.265432
86
0.556708
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,353
link_label.cpp
LibreSprite_LibreSprite/src/ui/link_label.cpp
// Aseprite UI Library // Copyright (C) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "ui/link_label.h" #include "base/launcher.h" #include "ui/message.h" #include "ui/system...
1,869
C++
.cpp
79
19.240506
69
0.644796
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,354
grid_ui_tests.cpp
LibreSprite_LibreSprite/src/ui/grid_ui_tests.cpp
// Aseprite // Copyright (C) 2001-2015 David Capello // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License version 2 as // published by the Free Software Foundation. #define TEST_GUI #include "tests/test.h" #include "gfx/size.h" using names...
5,733
C++
.cpp
191
27.455497
71
0.588118
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,355
conversion_she.cpp
LibreSprite_LibreSprite/src/doc/conversion_she.cpp
// Aseprite Document Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/conversion_she.h" #include "base/24bits.h" #include "doc/algo.h" #include "doc...
8,095
C++
.cpp
196
36.989796
153
0.664462
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,356
sprite_tests.cpp
LibreSprite_LibreSprite/src/doc/sprite_tests.cpp
// Aseprite Document Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include <gtest/gtest.h> #include "doc/cel.h" #include "doc/cels_range.h" #include "doc/layer...
2,381
C++
.cpp
94
21.797872
60
0.613726
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,357
frame_tag_io.cpp
LibreSprite_LibreSprite/src/doc/frame_tag_io.cpp
// Aseprite Document Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/frame_tag_io.h" #include "base/serialization.h" #include "doc/frame_tag.h" #inc...
1,214
C++
.cpp
44
25.386364
60
0.710095
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,358
palette.cpp
LibreSprite_LibreSprite/src/doc/palette.cpp
// Aseprite Document Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/palette.h" #include "base/base.h" #include "doc/image.h" #include "doc/remap.h"...
5,728
C++
.cpp
216
23.185185
77
0.590293
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,359
palette_io.cpp
LibreSprite_LibreSprite/src/doc/palette_io.cpp
// Aseprite Document Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/palette_io.h" #include "base/serialization.h" #include "doc/palette.h" #includ...
1,261
C++
.cpp
44
26.477273
60
0.680798
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,360
layer.cpp
LibreSprite_LibreSprite/src/doc/layer.cpp
// Aseprite Document Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/layer.h" #include "doc/cel.h" #include "doc/image.h" #include "doc/primitives.h...
7,189
C++
.cpp
283
22.378092
88
0.665644
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false
42,361
document.cpp
LibreSprite_LibreSprite/src/doc/document.cpp
// Aseprite Document Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/document.h" #include "base/path.h" #include "doc/context.h" #include "doc/sprit...
1,536
C++
.cpp
75
18.266667
62
0.717361
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,362
frame_tag.cpp
LibreSprite_LibreSprite/src/doc/frame_tag.cpp
// Aseprite Document Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/frame_tag.h" #include "base/debug.h" #include "doc/frame_tags.h" namespace doc...
1,468
C++
.cpp
66
19.848485
75
0.68759
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,363
object.cpp
LibreSprite_LibreSprite/src/doc/object.cpp
// Aseprite Document Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/object.h" #include "base/debug.h" #include "base/mutex.h" #include "base/scoped...
1,800
C++
.cpp
80
20
68
0.679201
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,364
subobjects_io.cpp
LibreSprite_LibreSprite/src/doc/subobjects_io.cpp
// Aseprite Document Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/subobjects_io.h" #include "doc/cel.h" #include "doc/cel_io.h" #include "doc/ima...
1,605
C++
.cpp
59
24.830508
67
0.73355
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,365
sprites.cpp
LibreSprite_LibreSprite/src/doc/sprites.cpp
// Aseprite Document Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/sprites.h" #include "base/mutex.h" #include "doc/sprite.h" #include "doc/cel.h"...
1,531
C++
.cpp
67
20.522388
72
0.687457
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,366
cel_io.cpp
LibreSprite_LibreSprite/src/doc/cel_io.cpp
// Aseprite Document Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/cel_io.h" #include "base/serialization.h" #include "doc/cel.h" #include "doc/su...
1,004
C++
.cpp
37
25.054054
69
0.731452
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,367
cels_range.cpp
LibreSprite_LibreSprite/src/doc/cels_range.cpp
// Aseprite Document Library // Copyright (c) 2001-2015 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/cels_range.h" #include "doc/cel.h" #include "doc/layer.h" #include "doc/sprite....
1,784
C++
.cpp
73
20.246575
104
0.600588
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
true
false
false
true
false
false
42,368
sprite.cpp
LibreSprite_LibreSprite/src/doc/sprite.cpp
// Aseprite Document Library // Copyright (c) 2001-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "doc/sprite.h" #include "base/base.h" #include "base/memory.h" #include "base/remove...
12,947
C++
.cpp
468
24.173077
102
0.627608
LibreSprite/LibreSprite
4,823
282
41
GPL-2.0
9/20/2024, 9:26:25 PM (Europe/Amsterdam)
false
false
false
false
false
true
false
false