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 |
|---|---|---|---|---|---|---|---|---|
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TOOLSGROUP_SCREENCOLORPICKER_CPP_SCREENCOLORPICKER_H
#define GROUP_TOOLSGROUP_SCREENCOLORPICKER_CPP_SCREENCOLORPICKER_H
// Qt lib import
#include ... | /content/code_sandbox/components/ToolsGroup/ScreenColorPicker/cpp/screenColorPicker.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 268 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "screenColorPicker.h"
#include <QClipboard>
using namespace ScreenColorPicker;
Manage::Manage(): colorPicker(new ColorPicker),currentColor(QColor("blue"))
{... | /content/code_sandbox/components/ToolsGroup/ScreenColorPicker/cpp/screenColorPicker.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 157 |
```objective-c
#ifndef COLORPICKER_H
#define COLORPICKER_H
#include "mousedropper.h"
#include <QWidget>
class ColorPicker : public QWidget
{
Q_OBJECT
public:
explicit ColorPicker(QWidget *parent = nullptr);
private:
MouseDropper *mousedropper;
protected:
void paintEvent(QPaintEvent *e);
void mouse... | /content/code_sandbox/components/ToolsGroup/ScreenColorPicker/cpp/colorpicker.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 108 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import PngOptimize 1.0
Item {
id: pngOptimize
w... | /content/code_sandbox/components/ToolsGroup/PngOptimize/qml/PngOptimize.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,875 |
```c++
#include "colorpicker.h"
#include <QApplication>
#include <QGuiApplication>
#include <QScreen>
#include <QDesktopWidget>
#include <QPainter>
ColorPicker::ColorPicker(QWidget *parent)
: QWidget(parent)
, mousedropper(new MouseDropper(this))
{
resize(QGuiApplication::primaryScreen()->size());
thi... | /content/code_sandbox/components/ToolsGroup/ScreenColorPicker/cpp/colorpicker.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 205 |
```c++
#include "mousedropper.h"
#include <QApplication>
#include <QDesktopWidget>
#include <QPainter>
#include <QScreen>
#include <QCursor>
const QSize winSize(100,100); //
const int grabInterval=50; //
const int magnificationTimes=10; //
const double split=0.7; //
const int sizeOfMouseI... | /content/code_sandbox/components/ToolsGroup/ScreenColorPicker/cpp/mousedropper.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 632 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import "qrc:/MaterialUI/Interface/"
import ScreenColorPicker 1.0
Item {
id: screenColorPicker
width: 620
he... | /content/code_sandbox/components/ToolsGroup/ScreenColorPicker/qml/ScreenColorPicker.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 328 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
DEFINES += \
TOOLSGROUP_JPGOPTIMIZE_ENABLE
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/jpgoptimize.h
SOURCES *= \
$$PWD/cpp/jpgoptimize.cpp... | /content/code_sandbox/components/ToolsGroup/JpgOptimize/JpgOptimize.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 111 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TOOLSGROUP_JPGOPTIMIZE_CPP_JPGOPTIMIZE_H_
#define GROUP_TOOLSGROUP_JPGOPTIMIZE_CPP_JPGOPTIMIZE_H_
// C++ lib import
#include <functional>
// Qt l... | /content/code_sandbox/components/ToolsGroup/JpgOptimize/cpp/jpgoptimize.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 391 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jpgoptimize.h"
// C++ lib import
#include <functional>
// Qt lib import
#include <QFileDialog>
#include <QStandardPaths>
#include <QtConcurrent>
// JQGuetzl... | /content/code_sandbox/components/ToolsGroup/JpgOptimize/cpp/jpgoptimize.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,304 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/lanfiletransport.h
SOURCES *= \
$$PWD/cpp/lanfiletransport_.cpp
RESOURCES *= \
$$PWD/qml/LanFil... | /content/code_sandbox/components/ToolsGroup/LanFileTransport/LanFileTransport.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 100 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TOOLSGROUP_LANFILETRANSPORT_CPP_LANFILETRANSPORT_H_
#define GROUP_TOOLSGROUP_LANFILETRANSPORT_CPP_LANFILETRANSPORT_H_
// JQToolsLibrary import
#in... | /content/code_sandbox/components/ToolsGroup/LanFileTransport/cpp/lanfiletransport.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 479 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import JpgOptimize 1.0
Item {
id: jpgOptimize
w... | /content/code_sandbox/components/ToolsGroup/JpgOptimize/qml/JpgOptimize.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,888 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "lanfiletransport.h"
// Qt lib import
#include <QHostInfo>
#include <QStandardPaths>
#include <QtConcurrent>
// JQNetwork lib import
#include <JQNetworkLan>
#... | /content/code_sandbox/components/ToolsGroup/LanFileTransport/cpp/lanfiletransport_.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 2,470 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/linesstatistics.h
SOURCES *= \
$$PWD/cpp/linesstatistics.cpp
RESOURCES *= \
$$PWD/qml/LinesStat... | /content/code_sandbox/components/ToolsGroup/LinesStatistics/LinesStatistics.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 96 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "linesstatistics.h"
// Qt lib import
#include <QSet>
#include <QFileDialog>
#include <QStandardPaths>
#include <QJsonArray>
#include <QEventLoop>
#include <QtC... | /content/code_sandbox/components/ToolsGroup/LinesStatistics/cpp/linesstatistics.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 543 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import LanFileTransport 1.0
Item {
id: lanFileTrans... | /content/code_sandbox/components/ToolsGroup/LanFileTransport/qml/LanFileTransport.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,651 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TOOLSGROUP_LINESSTATISTICS_CPP_LINESSTATISTICS_H_
#define GROUP_TOOLSGROUP_LINESSTATISTICS_CPP_LINESSTATISTICS_H_
// Qt lib import
#include <QJson... | /content/code_sandbox/components/ToolsGroup/LinesStatistics/cpp/linesstatistics.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 202 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef TEXTGROUP_TEXTGROUP_H_
#define TEXTGROUP_TEXTGROUP_H_
// TextGroup lib import
#include <Utf16Transform>
#include <RgbStringTransform>
#include <CaseTran... | /content/code_sandbox/components/TextGroup/textgroup.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 177 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
include( $$PWD/Utf16Transform/Utf16Transform.pri )
include( $$PWD/RgbStringTransform/RgbStringTransform.pri )
include( $$PWD/UrlEncode/UrlEncode.pri )
include( $$PWD... | /content/code_sandbox/components/TextGroup/TextGroup.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 171 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/jsonformat.h
SOURCES *= \
$$PWD/cpp/jsonformat.cpp
RESOURCES *= \
$$PWD/qml/JsonFormat.qrc
``` | /content/code_sandbox/components/TextGroup/JsonFormat/JsonFormat.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 94 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import LinesStatistics 1.0
Item {
id: linesStatisti... | /content/code_sandbox/components/ToolsGroup/LinesStatistics/qml/LinesStatistics.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 893 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TEXTGROUP_JSONFORMAT_CPP_JSONFORMAT_H_
#define GROUP_TEXTGROUP_JSONFORMAT_CPP_JSONFORMAT_H_
// JQToolsLibrary import
#include <JQToolsLibrary>
#d... | /content/code_sandbox/components/TextGroup/JsonFormat/cpp/jsonformat.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 190 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jsonformat.h"
// Qt lib import
#include <QJsonObject>
#include <QJsonDocument>
using namespace JsonFormat;
bool Manage::check(const QString &string)
{
r... | /content/code_sandbox/components/TextGroup/JsonFormat/cpp/jsonformat.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 145 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/urlencode.h
SOURCES *= \
$$PWD/cpp/urlencode.cpp
RESOURCES *= \
$$PWD/qml/UrlEncode.qrc
``` | /content/code_sandbox/components/TextGroup/UrlEncode/UrlEncode.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 94 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TEXTGROUP_URLENCODE_CPP_URLENCODE_H_
#define GROUP_TEXTGROUP_URLENCODE_CPP_URLENCODE_H_
// JQToolsLibrary import
#include <JQToolsLibrary>
#defin... | /content/code_sandbox/components/TextGroup/UrlEncode/cpp/urlencode.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 204 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import JsonFormat 1.0
Item {
id: jsonFormat
wid... | /content/code_sandbox/components/TextGroup/JsonFormat/qml/JsonFormat.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 679 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "urlencode.h"
// Qt lib import
#include <QDebug>
#include <QColor>
#include <QUrl>
using namespace UrlEncode;
QString Manage::encode(const QString &string)
{... | /content/code_sandbox/components/TextGroup/UrlEncode/cpp/urlencode.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 120 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/casetransform.h
SOURCES *= \
$$PWD/cpp/casetransform.cpp
RESOURCES *= \
$$PWD/qml/CaseTransform... | /content/code_sandbox/components/TextGroup/CaseTransform/CaseTransform.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 98 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "casetransform.h"
// Qt lib import
#include <QColor>
#include <QUrl>
using namespace CaseTransform;
QString Manage::upper(const QString &string)
{
return... | /content/code_sandbox/components/TextGroup/CaseTransform/cpp/casetransform.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 100 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import UrlEncode 1.0
Item {
id: urlEncode
width... | /content/code_sandbox/components/TextGroup/UrlEncode/qml/UrlEncode.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 482 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TEXTGROUP_CASETRANSFORM_CPP_CASETRANSFORM_H_
#define GROUP_TEXTGROUP_CASETRANSFORM_CPP_CASETRANSFORM_H_
// JQToolsLibrary import
#include <JQTools... | /content/code_sandbox/components/TextGroup/CaseTransform/cpp/casetransform.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 192 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/rgbstringtransform.h
SOURCES *= \
$$PWD/cpp/rgbstringtransform.cpp
RESOURCES *= \
$$PWD/qml/Rgb... | /content/code_sandbox/components/TextGroup/RgbStringTransform/RgbStringTransform.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 99 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TEXTGROUP_RGBSTRINGTRANSFORM_CPP_RGBSTRINGTRANSFORM_H_
#define GROUP_TEXTGROUP_RGBSTRINGTRANSFORM_CPP_RGBSTRINGTRANSFORM_H_
// JQToolsLibrary impo... | /content/code_sandbox/components/TextGroup/RgbStringTransform/cpp/rgbstringtransform.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 257 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import CaseTransform 1.0
Item {
id: caseTransform
... | /content/code_sandbox/components/TextGroup/CaseTransform/qml/CaseTransform.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 672 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "rgbstringtransform.h"
// Qt lib import
#include <QColor>
using namespace RgbStringTransform;
QString Manage::getHexStringFromColorName(const QString &colorN... | /content/code_sandbox/components/TextGroup/RgbStringTransform/cpp/rgbstringtransform.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 234 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import QtQuick.Dialogs 1.3
import "qrc:/MaterialUI/Interface/"
import RgbStringTransform 1.0... | /content/code_sandbox/components/TextGroup/RgbStringTransform/qml/RgbStringTransform.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,140 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/utf16transform.h
SOURCES *= \
$$PWD/cpp/utf16transform.cpp
RESOURCES *= \
$$PWD/qml/Utf16Transf... | /content/code_sandbox/components/TextGroup/Utf16Transform/Utf16Transform.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 99 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "utf16transform.h"
// Qt lib import
#include <QFileDialog>
#include <QStandardPaths>
using namespace Utf16Transform;
QString Manage::toUtf16(const QString &s... | /content/code_sandbox/components/TextGroup/Utf16Transform/cpp/utf16transform.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 295 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TEXTGROUP_UTF16TRANSFORM_CPP_UTF16TRANSFORM_H_
#define GROUP_TEXTGROUP_UTF16TRANSFORM_CPP_UTF16TRANSFORM_H_
// JQToolsLibrary import
#include <JQT... | /content/code_sandbox/components/TextGroup/Utf16Transform/cpp/utf16transform.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 207 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/stringsort.h
SOURCES *= \
$$PWD/cpp/stringsort.cpp
RESOURCES *= \
$$PWD/qml/StringSort.qrc
``` | /content/code_sandbox/components/TextGroup/StringSort/StringSort.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 95 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TEXTGROUP_STRINGSORT_CPP_STRINGSORT_H_
#define GROUP_TEXTGROUP_STRINGSORT_CPP_STRINGSORT_H_
// JQToolsLibrary import
#include <JQToolsLibrary>
#d... | /content/code_sandbox/components/TextGroup/StringSort/cpp/stringsort.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 189 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "stringsort.h"
// C++ lib import
#include <algorithm>
using namespace StringSort;
QString Manage::sort(const QString &string, const bool &descOrder)
{
au... | /content/code_sandbox/components/TextGroup/StringSort/cpp/stringsort.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 150 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import StringSort 1.0
Item {
id: stringSort
wid... | /content/code_sandbox/components/TextGroup/StringSort/qml/StringSort.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 645 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import Utf16Transform 1.0
Item {
id: utf16Transform... | /content/code_sandbox/components/TextGroup/Utf16Transform/qml/Utf16Transform.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,117 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TEXTGROUP_RANDOMUUID_CPP_RANDOMUUID_H_
#define GROUP_TEXTGROUP_RANDOMUUID_CPP_RANDOMUUID_H_
// JQToolsLibrary import
#include <JQToolsLibrary>
#d... | /content/code_sandbox/components/TextGroup/RandomUuid/cpp/randomuuid.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 178 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "randomuuid.h"
// Qt lib import
#include <QCoreApplication>
#include <QDateTime>
// JQLibrary lib import
#include "JQFoundation.h"
using namespace RandomUuid... | /content/code_sandbox/components/TextGroup/RandomUuid/cpp/randomuuid.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 164 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/randomuuid.h
SOURCES *= \
$$PWD/cpp/randomuuid.cpp
RESOURCES *= \
$$PWD/qml/RandomUuid.qrc
``` | /content/code_sandbox/components/TextGroup/RandomUuid/RandomUuid.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 94 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import RandomUuid 1.0
Item {
id: randomUuid
wid... | /content/code_sandbox/components/TextGroup/RandomUuid/qml/RandomUuid.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 363 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "randompassword.h"
// Qt lib import
#include <QCoreApplication>
#include <QDateTime>
using namespace RandomPassword;
Manage::Manage()
{
srand( QDateTime:... | /content/code_sandbox/components/TextGroup/RandomPassword/cpp/randompassword.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 306 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_TEXTGROUP_RANDOMPASSWORD_CPP_RANDOMPASSWORD_H_
#define GROUP_TEXTGROUP_RANDOMPASSWORD_CPP_RANDOMPASSWORD_H_
// JQToolsLibrary import
#include <JQT... | /content/code_sandbox/components/TextGroup/RandomPassword/cpp/randompassword.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 198 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/randompassword.h
SOURCES *= \
$$PWD/cpp/randompassword.cpp
RESOURCES *= \
$$PWD/qml/RandomPassw... | /content/code_sandbox/components/TextGroup/RandomPassword/RandomPassword.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 94 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
include( $$PWD/PngWarningRemover/PngWarningRemover.pri )
include( $$PWD/PropertyMaker/PropertyMaker.pri )
include( $$PWD/CppFileMaker/CppFileMaker.pri )
INCLUDEPATH... | /content/code_sandbox/components/QtGroup/QtGroup.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 110 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef QTGROUP_QTGROUP_H_
#define QTGROUP_QTGROUP_H_
// QtGroup lib import
#include <PngWarningRemover>
#include <PropertyMaker>
#include <CppFileMaker>
#defi... | /content/code_sandbox/components/QtGroup/qtgroup.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 120 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/cppfilemaker.h
SOURCES *= \
$$PWD/cpp/cppfilemaker.cpp
RESOURCES *= \
$$PWD/qml/CppFileMaker.qr... | /content/code_sandbox/components/QtGroup/CppFileMaker/CppFileMaker.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 110 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import RandomPassword 1.0
Item {
id: randomPassword... | /content/code_sandbox/components/TextGroup/RandomPassword/qml/RandomPassword.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 590 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_QTGROUP_CPPFILEMAKER_CPP_CPPFILEMAKER_H_
#define GROUP_QTGROUP_CPPFILEMAKER_CPP_CPPFILEMAKER_H_
// C++ lib import
#include <functional>
// Qt lib... | /content/code_sandbox/components/QtGroup/CppFileMaker/cpp/cppfilemaker.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 269 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "cppfilemaker.h"
// Qt lib import
#include <QStandardPaths>
// JQLibrary import
#include "JQFile.h"
using namespace CppFileMaker;
QString Manage::make(
... | /content/code_sandbox/components/QtGroup/CppFileMaker/cpp/cppfilemaker.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 772 |
```c++
// .h include
#include "%classname%.h"
// Qt lib import
#include <QDebug>
``` | /content/code_sandbox/components/QtGroup/CppFileMaker/resources/files/template/qmltemplate.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 21 |
```objective-c
#ifndef %MACROPROTECTSPREFIX%_%CLASSNAME%_H_
#define %MACROPROTECTSPREFIX%_%CLASSNAME%_H_
// Qt lib import
#include <QObject>
class %ClassName%: public QObject
{
Q_OBJECT
Q_DISABLE_COPY( %ClassName% )
public:
%ClassName%() = default;
~%ClassName%() = default;
public slots:
//...
... | /content/code_sandbox/components/QtGroup/CppFileMaker/resources/files/template/cpptemplate.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 123 |
```objective-c
#ifndef %MACROPROTECTSPREFIX%_%CLASSNAME%_H_
#define %MACROPROTECTSPREFIX%_%CLASSNAME%_H_
// Qt lib import
#include <QObject>
#define %CLASSNAME%_REGISTERTYPE \
qmlRegisterType< %ClassName% >( "%ClassName%", 1, 0, "%ClassName%" );
class %ClassName%: public QObject
{
Q_OBJECT
Q_DISABLE_COPY... | /content/code_sandbox/components/QtGroup/CppFileMaker/resources/files/template/qmltemplate.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 157 |
```sourcepawn
#ifndef %MACROPROTECTSPREFIX%_%CLASSNAME%_INC_
#define %MACROPROTECTSPREFIX%_%CLASSNAME%_INC_
// .h include
#include "%classname%.h"
#endif//%MACROPROTECTSPREFIX%_%CLASSNAME%_INC_
``` | /content/code_sandbox/components/QtGroup/CppFileMaker/resources/files/template/cpptemplate.inc | sourcepawn | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 61 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/pngwarningremover.h
SOURCES *= \
$$PWD/cpp/pngwarningremover.cpp
RESOURCES *= \
$$PWD/qml/PngWa... | /content/code_sandbox/components/QtGroup/PngWarningRemover/PngWarningRemover.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 100 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import CppFileMaker 1.0
Item {
id: cppFileMaker
... | /content/code_sandbox/components/QtGroup/CppFileMaker/qml/CppFileMaker.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 353 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_QTGROUP_PNGWARNINGREMOVER_CPP_PNGWARNINGREMOVER_H_
#define GROUP_QTGROUP_PNGWARNINGREMOVER_CPP_PNGWARNINGREMOVER_H_
// JQToolsLibrary import
#incl... | /content/code_sandbox/components/QtGroup/PngWarningRemover/cpp/pngwarningremover.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 238 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "pngwarningremover.h"
// Qt lib import
#include <QImage>
#include <QFileDialog>
#include <QStandardPaths>
#include <QtConcurrent>
#include <QFileInfo>
using n... | /content/code_sandbox/components/QtGroup/PngWarningRemover/cpp/pngwarningremover.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 457 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/propertymaker.h
SOURCES *= \
$$PWD/cpp/propertymaker.cpp
RESOURCES *= \
$$PWD/qml/PropertyMaker... | /content/code_sandbox/components/QtGroup/PropertyMaker/PropertyMaker.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 96 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import "qrc:/MaterialUI/Interface/"
import PngWarningRemover 1.0
Item {
id: pngWarningRemover
width: 620
heig... | /content/code_sandbox/components/QtGroup/PngWarningRemover/qml/PngWarningRemover.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 404 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_QTGROUP_PROPERTYMAKER_CPP_PROPERTYMAKER_H_
#define GROUP_QTGROUP_PROPERTYMAKER_CPP_PROPERTYMAKER_H_
// C++ lib import
#include <functional>
// Qt... | /content/code_sandbox/components/QtGroup/PropertyMaker/cpp/propertymaker.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 276 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "propertymaker.h"
// Qt lib import
#include <QFileDialog>
#include <QStandardPaths>
using namespace PropertyMaker;
Manage::Manage()
{
propertyMaker_[ "RE... | /content/code_sandbox/components/QtGroup/PropertyMaker/cpp/propertymaker.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,861 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef WELCOMEGROUP_WELCOMEGROUP_H_
#define WELCOMEGROUP_WELCOMEGROUP_H_
// WelcomeGroup lib import
#include "welcome.h"
#define WELCOMEGROUP_INITIALIZA \
... | /content/code_sandbox/components/WelcomeGroup/welcomegroup.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 104 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/ \
$$PWD/
HEADERS *= \
$$PWD/cpp/welcome.h \
$$PWD/welcomegroup.h
SOURCES *= \
$$PWD/cpp/welcome.cpp
RESOURCES *= \... | /content/code_sandbox/components/WelcomeGroup/WelcomeGroup.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 103 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "welcome.h"
// Qt lib import
#include <QDesktopServices>
#include <QUrl>
using namespace Welcome;
void Manage::openGitHubLink()
{
QDesktopServices::openU... | /content/code_sandbox/components/WelcomeGroup/cpp/welcome.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 119 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import PropertyMaker 1.0
Item {
id: propertyMaker
... | /content/code_sandbox/components/QtGroup/PropertyMaker/qml/PropertyMaker.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,101 |
```objective-c
#ifndef GROUP_WELCOMEGROUP_CPP_WELCOME_H_
#define GROUP_WELCOMEGROUP_CPP_WELCOME_H_
// JQToolsLibrary import
#include <JQToolsLibrary>
#define WELCOME_INITIALIZA \
{ \
qmlRegisterType... | /content/code_sandbox/components/WelcomeGroup/cpp/welcome.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 143 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
include( $$PWD/HashCalculate/HashCalculate.pri )
include( $$PWD/TimestampTransform/TimestampTransform.pri )
include( $$PWD/BinarySearchAssistant/BinarySearchAssistan... | /content/code_sandbox/components/CalculateGroup/CalculateGroup.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 108 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import "qrc:/MaterialUI/Interface/"
import Welcome 1.0
Item {
id: welcome
width: 620
height: 540
Welcome... | /content/code_sandbox/components/WelcomeGroup/qml/Welcome.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 450 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef CALCULATEGROUP_CALCULATEGROUP_H_
#define CALCULATEGROUP_CALCULATEGROUP_H_
// CalculateGroup lib import
#include <HashCalculate>
#include <TimestampTrans... | /content/code_sandbox/components/CalculateGroup/calculategroup.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 131 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: xingwozhonghua@126.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/binarysearchassistant.h
SOURCES *= \
$$PWD/cpp/binarysearchassistant.cpp
RESOURCES *= \
$$PW... | /content/code_sandbox/components/CalculateGroup/BinarySearchAssistant/BinarySearchAssistant.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 103 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: xingwozhonghua@126.com
GitHub: path_to_url
*/
#include "binarysearchassistant.h"
// Qt lib import
using namespace BinarySearchAssistant;
void Manage::startNewGame(int min, int max)
{
m_min = min;
m_max = ... | /content/code_sandbox/components/CalculateGroup/BinarySearchAssistant/cpp/binarysearchassistant.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 162 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: xingwozhonghua@126.com
GitHub: path_to_url
TODO:
1.
2. -
3. -
4. """""" -
*/
#ifndef your_sha256_hashTANT_H_
#define your_sha256_hashTANT_H_
// JQToolsLibrary im... | /content/code_sandbox/components/CalculateGroup/BinarySearchAssistant/cpp/binarysearchassistant.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 271 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/timestamptransform.h
SOURCES *= \
$$PWD/cpp/timestamptransform.cpp
RESOURCES *= \
$$PWD/qml/Tim... | /content/code_sandbox/components/CalculateGroup/TimestampTransform/TimestampTransform.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 96 |
```qml
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import BinarySearchAssistant 1.0
Item {
id: binarySearchAssistant
width: 620
height: 540
property string guess: ""
property bool canStartGame: false
property bool startRecor... | /content/code_sandbox/components/CalculateGroup/BinarySearchAssistant/qml/BinarySearchAssistant.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 472 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef your_sha256_hash_
#define your_sha256_hash_
// JQToolsLibrary import
#include <JQToolsLibrary>
#define TTIMESTAMPTRANSFORM_INITIALIZA ... | /content/code_sandbox/components/CalculateGroup/TimestampTransform/cpp/timestamptransform.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 177 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "timestamptransform.h"
// Qt lib import
#include <QDateTime>
#include <QCryptographicHash>
using namespace TimestampTransform;
QString Manage::currentDateTim... | /content/code_sandbox/components/CalculateGroup/TimestampTransform/cpp/timestamptransform.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 195 |
```qmake
#
# This file is part of JQTools
#
# Project introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
INCLUDEPATH *= \
$$PWD/cpp/
HEADERS *= \
$$PWD/cpp/hashcalculate.h
SOURCES *= \
$$PWD/cpp/hashcalculate.cpp
RESOURCES *= \
$$PWD/qml/HashCalculate... | /content/code_sandbox/components/CalculateGroup/HashCalculate/HashCalculate.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 94 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import TimestampTransform 1.0
Item {
id: timestampT... | /content/code_sandbox/components/CalculateGroup/TimestampTransform/qml/TimestampTransform.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 361 |
```objective-c
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#ifndef GROUP_CALCULATEGROUP_HASHCALCULATE_CPP_HASHCALCULATE_H_
#define GROUP_CALCULATEGROUP_HASHCALCULATE_CPP_HASHCALCULATE_H_
// JQToolsLibrary import
#includ... | /content/code_sandbox/components/CalculateGroup/HashCalculate/cpp/hashcalculate.h | objective-c | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 359 |
```c++
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "hashcalculate.h"
// Qt lib import
#include <QFileDialog>
#include <QStandardPaths>
#include <QCryptographicHash>
using namespace HashCalculate;
void Manage:... | /content/code_sandbox/components/CalculateGroup/HashCalculate/cpp/hashcalculate.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 763 |
```qmake
#
# This file is part of JQNetwork
#
# Library introduce: path_to_url
#
#
# Contact email: Jason@JasonServer.com
#
# GitHub: path_to_url
#
QT *= core network concurrent
CONFIG *= c++11
CONFIG *= c++14
INCLUDEPATH *= \
$$PWD/include/
# JQNetwork
JQNETWORK_VERSIONSTRING = 0.6.6
# Qt5.7
lessThan(... | /content/code_sandbox/library/JQNetwork/JQNetwork.pri | qmake | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 962 |
```qml
import QtQuick 2.8
import JQNetworkClientForQml 1.0
JQNetworkClientForQml {
id: jqNetworkClientForQml
function onSendSucceed( callback, received ) {
callback( received );
}
function onSendFail( callback ) {
callback();
}
}
``` | /content/code_sandbox/library/JQNetwork/qml/JQNetwork/JQNetworkClient.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 74 |
```qml
/*
This file is part of JQTools
Project introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
import QtQuick 2.7
import QtQuick.Controls 1.4
import QtGraphicalEffects 1.0
import "qrc:/MaterialUI/Interface/"
import HashCalculate 1.0
Item {
id: hashCalculate
... | /content/code_sandbox/components/CalculateGroup/HashCalculate/qml/HashCalculate.qml | qml | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,873 |
```c++
/*
This file is part of JQNetwork
Library introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jqnetwork_processor.h"
// Qt lib import
#include <QDebug>
#include <QThread>
#include <QMetaObject>
#include <QMetaMethod>
#include <QVariantMap>
#i... | /content/code_sandbox/library/JQNetwork/src/jqnetwork_processor.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 4,426 |
```c++
/*
This file is part of JQNetwork
Library introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jqnetwork_connect.h"
// C lib import
#if ( defined Q_OS_MAC ) || ( defined __MINGW32__ ) || ( defined Q_OS_LINUX )
# include <utime.h>
#endif
// ... | /content/code_sandbox/library/JQNetwork/src/jqnetwork_connect.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 7,430 |
```c++
/*
This file is part of JQNetwork
Library introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jqnetwork_foundation.h"
// Qt lib import
#include <QDebug>
#include <QThreadPool>
#include <QSemaphore>
#include <QVector>
#include <QCryptographicH... | /content/code_sandbox/library/JQNetwork/src/jqnetwork_foundation.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 1,268 |
```c++
/*
This file is part of JQNetwork
Library introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jqnetwork_server.h"
// Qt lib import
#include <QDebug>
#include <QTcpServer>
#include <QThread>
#include <QMetaObject>
// JQNetwork lib import
#inc... | /content/code_sandbox/library/JQNetwork/src/jqnetwork_server.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 2,237 |
```c++
/*
This file is part of JQNetwork
Library introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jqnetwork_client.h"
// Qt lib import
#include <QDebug>
#include <QThread>
#include <QSemaphore>
#include <QJsonArray>
#include <QJsonObject>
#includ... | /content/code_sandbox/library/JQNetwork/src/jqnetwork_client.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 6,030 |
```c++
/*
This file is part of JQNetwork
Library introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jqnetwork_package.h"
// Qt lib import
#include <QDebug>
#include <QJsonObject>
#include <QJsonDocument>
#include <QFileInfo>
#include <QDateTime>
#... | /content/code_sandbox/library/JQNetwork/src/jqnetwork_package.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 3,738 |
```c++
/*
This file is part of JQNetwork
Library introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jqnetwork_lan.h"
// Qt lib import
#include <QDebug>
#include <QUdpSocket>
#include <QTimer>
#include <QJsonDocument>
#include <QJsonObject>
#include... | /content/code_sandbox/library/JQNetwork/src/jqnetwork_lan.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 2,915 |
```c++
/*
This file is part of JQNetwork
Library introduce: path_to_url
Contact email: Jason@JasonServer.com
GitHub: path_to_url
*/
#include "jqnetwork_clientforqml.h"
// Qt lib import
#include <QDebug>
#include <QJsonObject>
#include <QJsonDocument>
#include <QMetaObject>
// JQNetwork li... | /content/code_sandbox/library/JQNetwork/src/jqnetwork_clientforqml.cpp | c++ | 2016-05-15T04:09:51 | 2024-08-15T07:23:05 | JQTools | 188080501/JQTools | 1,683 | 825 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.