text
stringlengths
9
39.2M
dir
stringlengths
26
295
lang
stringclasses
185 values
created_date
timestamp[us]
updated_date
timestamp[us]
repo_name
stringlengths
1
97
repo_full_name
stringlengths
7
106
star
int64
1k
183k
len_tokens
int64
1
13.8M
```c++ /* LodePNG Utils This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter ...
/content/code_sandbox/library/JQLibrary/src/JQZopfli/zopflipng/lodepng/lodepng_util.cpp
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
8,306
```c++ #include "JQGuetzli.h" // Qt lib import #include <QDebug> #include <QFileInfo> #include <QTime> #include <QElapsedTimer> // guetzli lib import #include <cstdio> #include <cstdlib> #include <exception> #include <memory> #include <string> #include <string.h> #include "gflags/gflags.h" #include "png/png.h" #inclu...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/JQGuetzli.cpp
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
2,060
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/jpeg_data.h" #include <assert.h> #include <string.h> namespace guetzli { bool JPEGData::Is420() const { return ...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/jpeg_data.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
857
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/debug_print.h" namespace guetzli { void PrintDebug(ProcessStats* stats, std::string s) { if (stats->debug_output...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/debug_print.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
123
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/jpeg_huffman_decode.h" #include <assert.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include "gu...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/jpeg_huffman_decode.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
918
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/score.h" #include <cmath> namespace guetzli { double ScoreJPEG(double butteraugli_distance, int size, ...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/score.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
232
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/gamma_correct.h" #include <cmath> namespace guetzli { const double* NewSrgb8ToLinearTable() { double* table = n...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/gamma_correct.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
222
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/dct_double.h" #include <algorithm> #include <cmath> namespace guetzli { namespace { // kDCTMatrix[8*u+x] = 0.5*a...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/dct_double.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,045
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/butteraugli_comparator.h" #include <algorithm> #include "guetzli/debug_print.h" #include "guetzli/gamma_correct.h"...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/butteraugli_comparator.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
2,440
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/processor.h" #include <algorithm> #include <set> #include <string.h> #include <vector> #include "guetzli/butteraug...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/processor.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
8,853
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Integer implementation of the Inverse Discrete Cosine Transform (IDCT). #include "guetzli/idct.h" #include <algorithm> #include <...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/idct.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,829
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/output_image.h" #include <algorithm> #include <assert.h> #include <stdio.h> #include <string.h> #include <cmath> #i...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/output_image.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
5,057
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Entropy encoding (Huffman) utilities. #include "guetzli/entropy_encode.h" #include <assert.h> #include <algorithm> namespace gue...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/entropy_encode.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,208
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/quality.h" namespace guetzli { namespace { constexpr int kLowestQuality = 70; constexpr int kHighestQuality = 110...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/quality.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
609
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/quantize.h" namespace guetzli { bool QuantizeBlock(coeff_t block[kDCTBlockSize], const int q[kD...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/quantize.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
148
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Integer implementation of the Discrete Cosine Transform (DCT) // // Note! DCT output is kept scaled by 16, to retain maximum 16bit ...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/fdct.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
2,685
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/jpeg_data_decoder.h" #include "guetzli/output_image.h" namespace guetzli { // Mimic libjpeg's heuristics to guess...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/jpeg_data_decoder.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
401
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/jpeg_data_reader.h" #include <algorithm> #include <stdio.h> #include <string.h> #include "guetzli/jpeg_huffman_dec...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/jpeg_data_reader.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
10,050
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/preprocess_downsample.h" #include <algorithm> #include <assert.h> #include <string.h> #include <cmath> using std::...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/preprocess_downsample.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
5,192
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/jpeg_data_encoder.h" #include <algorithm> #include <string.h> #include "guetzli/fdct.h" namespace guetzli { name...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/jpeg_data_encoder.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,794
```c++ /* LodePNG version 20160409 This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, an...
/content/code_sandbox/library/JQLibrary/src/JQZopfli/zopflipng/lodepng/lodepng.cpp
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
64,546
```c++ /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #include "guetzli/jpeg_data_writer.h" #include <assert.h> #include <cstdlib> #include <string.h> #include "guetzli/entropy_encode.h"...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/guetzli/jpeg_data_writer.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
5,701
```objective-c /* This file is part of JQLibrary Contact email: 188080501@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without li...
/content/code_sandbox/library/JQLibrary/include/JQFoundation.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
2,407
```objective-c /* This file is part of JQLibrary Contact email: 188080501@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without li...
/content/code_sandbox/library/JQLibrary/include/JQFile.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
799
```c++ /* This file is part of JQLibrary Contact email: 188080501@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation...
/content/code_sandbox/library/JQLibrary/include/jqdeclare.hpp
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,454
```objective-c /* This file is part of JQLibrary Contact email: 188080501@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without li...
/content/code_sandbox/library/JQLibrary/include/JQBarcode.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
443
```objective-c /* This file is part of JQLibrary Contact email: 188080501@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without li...
/content/code_sandbox/library/JQLibrary/include/JQQRCodeWriter/JQQRCodeWriter.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
337
```objective-c /* This file is part of JQLibrary Contact email: 188080501@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without li...
/content/code_sandbox/library/JQLibrary/include/JQQRCodeReader/JQQRCodeReader.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
657
```objective-c /* This file is part of JQLibrary Contact email: 188080501@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without li...
/content/code_sandbox/library/JQLibrary/include/JQQRCodeReader/JQQRCodeReaderForQml.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
961
```objective-c /* This file is part of JQLibrary Contact email: 188080501@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without li...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/JQZopfli.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
392
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ /* Several utilities, including...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/util.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,306
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ /* Functions for basic LZ77 com...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/lz77.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,392
```c++ // // // path_to_url // // Unless required by applicable law or agreed to in writing, software // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // // Author: Jyrki Alakuijala (jyrki.alakuijala@gmail.com) // // The physical architecture of butteraugli is based on the following naming...
/content/code_sandbox/library/JQLibrary/src/JQGuetzli/butteraugli/butteraugli.cc
c++
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
17,738
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ /* The hash for ZopfliFindLonge...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/hash.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
552
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ #ifndef ZOPFLI_KATAJAINEN_H_ #d...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/katajainen.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
294
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ /* Utilities for using the lz77...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/symbols.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
467
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ /* The cache that speeds up Zop...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/cache.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
479
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ /* Functions to choose good bou...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/blocksplitter.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
533
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ /* The squeeze functions do enh...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/squeeze.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
440
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ #ifndef ZOPFLI_GZIP_H_ #define ...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/gzip_container.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
250
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ #ifndef ZOPFLI_ZOPFLI_H_ #defin...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/zopfli.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
549
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ #ifndef ZOPFLI_DEFLATE_H_ #defi...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/deflate.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
681
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ #ifndef ZOPFLI_ZLIB_H_ #define ...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/zlib_container.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
250
```objective-c /* path_to_url Unless required by applicable law or agreed to in writing, software WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Author: lode.vandevenne@gmail.com (Lode Vandevenne) Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) */ /* Utilities for creating and u...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopfli/tree.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
312
```objective-c // // // path_to_url // // Unless required by applicable law or agreed to in writing, software // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // // Author: lode.vandevenne@gmail.com (Lode Vandevenne) // Author: jyrki.alakuijala@gmail.com (Jyrki Alakuijala) // Library to r...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopflipng/zopflipng_lib.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
795
```objective-c /* LodePNG Utils This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and t...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopflipng/lodepng/lodepng_util.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,600
```objective-c /* This file is part of JQLibrary Contact email: 188080501@qq.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without li...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/JQGuetzli.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
356
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Data structures that represent the contents of a jpeg file. #ifndef GUETZLI_JPEG_DATA_H_ #define GUETZLI_JPEG_DATA_H_ #in...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/jpeg_data.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
2,228
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_DEBUG_PRINT_H_ #define GUETZLI_DEBUG_PRINT_H_ #include "guetzli/stats.h" namespace guetzli { void PrintDebu...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/debug_print.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
318
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_QUALITY_H_ #define GUETZLI_QUALITY_H_ namespace guetzli { double ButteraugliScoreForQuality(double quality);...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/quality.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
91
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_PROCESSOR_H_ #define GUETZLI_PROCESSOR_H_ #include <string> #include <vector> #include "guetzli/comparator.h...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/processor.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
348
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_FDCT_H_ #define GUETZLI_FDCT_H_ #include "guetzli/jpeg_data.h" namespace guetzli { // Computes the DCT (Dis...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/fdct.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
158
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_JPEG_BIT_WRITER_H_ #define GUETZLI_JPEG_BIT_WRITER_H_ #include <stdint.h> #include <memory> namespace guetzl...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/jpeg_bit_writer.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
925
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_BUTTERAUGLI_COMPARATOR_H_ #define GUETZLI_BUTTERAUGLI_COMPARATOR_H_ #include <vector> #include "butteraugli/...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/butteraugli_comparator.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
472
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Definition of error codes for parsing jpeg files. #ifndef GUETZLI_JPEG_ERROR_H_ #define GUETZLI_JPEG_ERROR_H_ namespace g...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/jpeg_error.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
391
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_IDCT_H_ #define GUETZLI_IDCT_H_ #include "guetzli/jpeg_data.h" namespace guetzli { // Fills in 'result' wit...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/idct.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
153
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_OUTPUT_IMAGE_H_ #define GUETZLI_OUTPUT_IMAGE_H_ #include <stdint.h> #include <vector> #include "guetzli/jpeg...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/output_image.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,296
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Functions for reading a jpeg byte stream into a JPEGData object. #ifndef GUETZLI_JPEG_DATA_READER_H_ #define GUETZLI_JPEG_...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/jpeg_data_reader.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
292
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_STATS_H_ #define GUETZLI_STATS_H_ #include <cstdio> #include <map> #include <string> #include <utility> #incl...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/stats.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
198
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_JPEG_DATA_ENCODER_H_ #define GUETZLI_JPEG_DATA_ENCODER_H_ #include <stdint.h> #include "guetzli/jpeg_data.h"...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/jpeg_data_encoder.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
231
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Functions for writing a JPEGData object into a jpeg byte stream. #ifndef GUETZLI_JPEG_DATA_WRITER_H_ #define GUETZLI_JPEG_...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/jpeg_data_writer.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
736
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_COMPARATOR_H_ #define GUETZLI_COMPARATOR_H_ #include <vector> #include "guetzli/output_image.h" #include "gu...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/comparator.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
781
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Entropy encoding (Huffman) utilities. #ifndef GUETZLI_ENTROPY_ENCODE_H_ #define GUETZLI_ENTROPY_ENCODE_H_ #include <stdde...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/entropy_encode.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
343
```objective-c /* LodePNG version 20160409 This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applicat...
/content/code_sandbox/library/JQLibrary/include/JQZopfli/zopflipng/lodepng/lodepng.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
19,506
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_DCT_DOUBLE_H_ #define GUETZLI_DCT_DOUBLE_H_ namespace guetzli { // Performs in-place floating point 8x8 DCT ...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/dct_double.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
184
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_FAST_LOG_H_ #define GUETZLI_FAST_LOG_H_ #include <math.h> namespace guetzli { inline int Log2FloorNonZero(u...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/fast_log.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
170
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Library to decode jpeg coefficients into an RGB image. #ifndef GUETZLI_JPEG_DATA_DECODER_H_ #define GUETZLI_JPEG_DATA_DECO...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/jpeg_data_decoder.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
239
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_COLOR_TRANSFORM_H_ #define GUETZLI_COLOR_TRANSFORM_H_ namespace guetzli { static const int kCrToRedTable[256...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/color_transform.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
8,526
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_SCORE_H_ #define GUETZLI_SCORE_H_ #include <vector> namespace guetzli { double ScoreJPEG(double butteraugli...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/score.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
101
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Utility function for building a Huffman lookup table for the jpeg decoder. #ifndef GUETZLI_JPEG_HUFFMAN_DECODE_H_ #define ...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/jpeg_huffman_decode.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
374
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_GAMMA_CORRECT_H_ #define GUETZLI_GAMMA_CORRECT_H_ namespace guetzli { const double* Srgb8ToLinearTable(); }...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/gamma_correct.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
100
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ // Preprocesses U and V channel for better results after downsampling. #ifndef GUETZLI_PREPROCESS_DOWNSAMPLE_H_ #define GUETZ...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/preprocess_downsample.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
274
```sourcepawn // Automatically generated by guetzli/order:update_c_code static const float csf[192] = { 0.0, 1.71014, 0.298711, 0.233709, 0.223126, 0.207072, 0.192775, 0.161201, 2.05807, 0.222927, 0.203406, 0.188465, 0.184668, 0.169993, 0.159142, 0.130155, 0.430518, 0.204939, 0.20...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/order.inc
sourcepawn
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
2,647
```objective-c /* * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ #ifndef GUETZLI_QUANTIZE_H_ #define GUETZLI_QUANTIZE_H_ #include "guetzli/jpeg_data.h" namespace guetzli { inline coeff_t Q...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/guetzli/quantize.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
179
```objective-c // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the followin...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/gflags/gflags_completions.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,281
```objective-c // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the followin...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/gflags/gflags_gflags.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
860
```objective-c // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the followin...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/gflags/gflags_declare.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,164
```objective-c // All rights reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the followin...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/gflags/gflags.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
6,702
```objective-c // // // path_to_url // // Unless required by applicable law or agreed to in writing, software // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // // Disclaimer: This is not an official Google product. // // Author: Jyrki Alakuijala (jyrki.alakuijala@gmail.com) #ifndef BUTT...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/butteraugli/butteraugli.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
5,174
```objective-c /* pngconf.h - machine configurable file for libpng * * libpng version 1.6.29, March 16, 2017 * * * This code is released under the libpng license. * For conditions of distribution and use, see the disclaimer * and license in png.h * * Any machine specific code is near the front of this file, s...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/png/pngconf.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
5,585
```objective-c /* pnglibconf.h - library build configuration */ /* libpng version 1.6.29, March 16, 2017 */ /* This code is released under the libpng license. */ /* For conditions of distribution and use, see the disclaimer */ /* and license in png.h */ /* pnglibconf.h */ /* Machine generated file: DO NOT EDIT */ /...
/content/code_sandbox/library/JQLibrary/include/JQGuetzli/png/pnglibconf.h
objective-c
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,648
```qml import QtQuick 2.5 import "./Element" import "./Interface" Item { id: materialUI // Theme.qml property color primaryColor: "#FAFAFA" /*! A darker version of the primary color used for the window titlebar (if client-side decorations are not used), unless a \l Page specifies its o...
/content/code_sandbox/library/MaterialUI/MaterialUI.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
2,818
```qmake RESOURCES *= \ $$PWD/MaterialUI.qrc ```
/content/code_sandbox/library/MaterialUI/MaterialUI.pri
qmake
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
14
```qml /* * QML Material - An application framework implementing Material Design. * * This program is free software: you can redistribute it and/or modify * published by the Free Software Foundation, either version 2.1 of the * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY W...
/content/code_sandbox/library/MaterialUI/Interface/MaterialSnackbar.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
676
```qml /* * QML Material - An application framework implementing Material Design. * * This program is free software: you can redistribute it and/or modify * published by the Free Software Foundation, either version 2.1 of the * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY W...
/content/code_sandbox/library/MaterialUI/Interface/MaterialCheckBox.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,117
```qml /* * QML Material - An application framework implementing Material Design. * * This program is free software: you can redistribute it and/or modify * published by the Free Software Foundation, either version 2.1 of the * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY W...
/content/code_sandbox/library/MaterialUI/Interface/MaterialActionButton.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
712
```qml import QtQuick 2.5 import QtQuick.Controls 1.4 import QtQuick.Window 2.2 import QtQuick.Dialogs 1.2 Rectangle { id: swipeToRefresh width: parent.width height: 0 color: "#00000000" property var base: parent.parent property int targetHeight: 150 property real offsetY: 0 property ...
/content/code_sandbox/library/MaterialUI/Interface/MaterialSwipeToRefresh.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
814
```qml import QtQuick 2.5 import QtQuick.Layouts 1.1 import "qrc:/MaterialUI/Element/" Item { id: materialTabbed width: 40 height: 40 property int itemWidth: 100 property alias model: listView.model property var iconDatas property alias textColor: button.textColor property alias back...
/content/code_sandbox/library/MaterialUI/Interface/MaterialTabbed.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
466
```qml import QtQuick 2.5 import QtQuick.Controls 1.4 import QtGraphicalEffects 1.0 Rectangle { id: materialPage width: parent.width height: parent.height color: "#efefef" property alias titleText: labelForTitle.text property alias tabbedModel: tabbed.model property alias tabbedIconDatas:...
/content/code_sandbox/library/MaterialUI/Interface/MaterialPage.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
742
```qml import QtQuick 2.5 import QtQuick.Controls 1.4 import QtQuick.Controls.Styles 1.4 import QtGraphicalEffects 1.0 import "../Element" TreeView { id: tableView width: 400 height: 400 enabled: modelForTableView.count > -1 alternatingRowColors: false backgroundVisible: false headerVisibl...
/content/code_sandbox/library/MaterialUI/Interface/MaterialTreeView.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
871
```qml import QtQuick 2.5 import QtQuick.Controls 1.4 as Controls import QtQuick.Controls.Styles 1.4 as ControlStyles MaterialDialog { id: dialog negativeButtonText: "" positiveButtonText: ("OK") property var callbackOnOK: null function show(title, message, callbackOnOK) { dialog.title =...
/content/code_sandbox/library/MaterialUI/Interface/MaterialDialogAlert.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
204
```qml /* * QML Material - An application framework implementing Material Design. * * This program is free software: you can redistribute it and/or modify * published by the Free Software Foundation, either version 2.1 of the * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY W...
/content/code_sandbox/library/MaterialUI/Interface/MaterialDialog.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,246
```qml import QtQuick 2.5 import QtQuick.Controls 1.4 as Controls import QtQuick.Controls.Styles 1.4 as ControlStyles MaterialDialog { id: dialog negativeButtonText: ("Cancel") positiveButtonText: ("OK") property var callbackOnCancel: null property var callbackOnOK: null function show(title,...
/content/code_sandbox/library/MaterialUI/Interface/MaterialDialogDatePicker.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
262
```qml /* * QML Material - An application framework implementing Material Design. * * This program is free software: you can redistribute it and/or modify * published by the Free Software Foundation, either version 2.1 of the * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY W...
/content/code_sandbox/library/MaterialUI/Interface/MaterialTextField.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,290
```qml /* * QML Material - An application framework implementing Material Design. * * This program is free software: you can redistribute it and/or modify * published by the Free Software Foundation, either version 2.1 of the * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY W...
/content/code_sandbox/library/MaterialUI/Interface/MaterialButton.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,064
```qml import QtQuick 2.5 import QtQuick.Controls 1.4 import QtQuick.Controls.Styles 1.4 MaterialDialog { id: dialog negativeButtonText: ("Cancel") positiveButtonText: ("OK") positiveButtonEnabled: currentItemIndex !== -1 property var callbackOnCancel: null property var callbackOnOK: null ...
/content/code_sandbox/library/MaterialUI/Interface/MaterialDialogScrolling.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
1,207
```qml import QtQuick 2.5 import QtQuick.Controls 1.4 as Controls import QtGraphicalEffects 1.0 import "../Element" Controls.TableView { id: tableView width: 400 height: 400 enabled: modelForTableView.count > -1 alternatingRowColors: false backgroundVisible: false headerVisible: true s...
/content/code_sandbox/library/MaterialUI/Interface/MaterialTableView.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
787
```qml import QtQuick 2.5 import QtQuick.Controls 1.4 as Controls import QtQuick.Controls.Styles 1.4 as ControlStyles import QtGraphicalEffects 1.0 Item { id: tabs signal indexRefreshed(); property var tabSource property var iconDatas property int currentItemX property int currentItemWidth ...
/content/code_sandbox/library/MaterialUI/Interface/MaterialTabs.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
892
```qml /* * QML Material - An application framework implementing Material Design. * * This program is free software: you can redistribute it and/or modify * published by the Free Software Foundation, either version 2.1 of the * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY W...
/content/code_sandbox/library/MaterialUI/Interface/MaterialBottomActionSheet.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
795
```qml import QtQuick 2.5 import QtQuick.Controls 1.4 as Controls import QtQuick.Controls.Styles 1.4 as ControlStyles MaterialDialog { id: dialog negativeButtonText: ("Cancel") positiveButtonText: ("OK") Component.onCompleted: { dialog.open() } property var callbackOnCancel: null ...
/content/code_sandbox/library/MaterialUI/Interface/MaterialDialogTextArea.qml
qml
2016-05-15T04:09:51
2024-08-15T07:23:05
JQTools
188080501/JQTools
1,683
399