Commit 6c032441 authored by captainwong's avatar captainwong

update qt img btns

parent 51a65fdb
#pragma once
#include "qt_global.h"
#include <QString>
#include <QStringList>
#include <QVariant>
#include <QVector>
#include <QSqlDatabase>
#include <QSqlError>
#include <QSqlQuery>
JLIBQT_NAMESPACE_BEGIN
struct Col {
QString name{};
QVariant val{};
QString bindableName() const {
return QString("%1=:%2").arg(name).arg(name);
}
void bindValue(QSqlQuery& query) const {
query.bindValue(":" + name, val);
}
};
using Cols = QVector<Col>;
inline QString bindableCols(const Cols& cols) {
QStringList strs;
for (const auto& col : cols) {
strs.append(col.bindableName());
}
return strs.join(",");
}
struct SqlHelper {
QString lastQuery{};
QSqlError lastError{};
bool update(const QSqlDatabase& db, const QString& table, const Cols& cols, const Col& key) {
QSqlQuery query(db);
query.prepare(QString("update %1 set %2 where %3").arg(table).arg(bindableCols(cols)).arg(key.bindableName()));
for (const auto& col : cols) {
col.bindValue(query);
}
key.bindValue(query);
if (query.exec()) {
return true;
} else {
lastQuery = query.lastQuery();
lastError = query.lastError();
return false;
}
}
};
JLIBQT_NAMESPACE_END
...@@ -55,7 +55,7 @@ void IconBtn::set_highlight(bool on) ...@@ -55,7 +55,7 @@ void IconBtn::set_highlight(bool on)
void IconBtn::enterEvent(QEvent*) void IconBtn::enterEvent(QEvent*)
{ {
if (!is_enabled_ || !isEnabled() || (parent() && !parentWidget()->isEnabled()))return; if (!is_enabled_ || !isEnabled() || (parent() && !parentWidget()->isEnabled()))return;
setCursor(QCursor(Qt::PointingHandCursor)); setCursor(is_busy_ ? Qt::WaitCursor : Qt::PointingHandCursor);
is_hover_ = true; is_hover_ = true;
setFocus(); setFocus();
refresh(); refresh();
......
...@@ -47,6 +47,7 @@ public: ...@@ -47,6 +47,7 @@ public:
void set_enabled(bool enabled) { is_enabled_ = enabled; refresh(); } void set_enabled(bool enabled) { is_enabled_ = enabled; refresh(); }
void set_ing(bool is_ing) { is_ing_ = is_ing; refresh(); } void set_ing(bool is_ing) { is_ing_ = is_ing; refresh(); }
bool is_ing() const { return is_ing_; } bool is_ing() const { return is_ing_; }
void set_busy(bool busy) { is_busy_ = busy; refresh(); }
protected: protected:
virtual void enterEvent(QEvent*) override; virtual void enterEvent(QEvent*) override;
...@@ -71,6 +72,7 @@ protected: ...@@ -71,6 +72,7 @@ protected:
bool is_press_ = false; bool is_press_ = false;
bool is_ing_ = false; bool is_ing_ = false;
bool is_highlight_ = false; bool is_highlight_ = false;
bool is_busy_ = false;
int tag_ = -1; int tag_ = -1;
int data_ = 0; int data_ = 0;
QSize sz_ = {}; QSize sz_ = {};
......
#include "ImageTxtBtn.h"
#include <QLabel>
#include <QMouseEvent>
#include <QPainter>
#include "../QtStylesheet.h"
ImageTxtBtn::ImageTxtBtn(QWidget* parent)
: QLabel(parent)
{
txt = new QLabel(this);
txt->setAttribute(Qt::WA_TranslucentBackground, true);
txt->setStyleSheet(jlib::qt::build_style(fontColor, fontSize, this->fontFamily) + (this->bold ? "font-weight:bold;" : ""));
txt->setAlignment(Qt::AlignCenter);
txt->hide();
}
void ImageTxtBtn::setPixNormal(const QPixmap& pix)
{
pixNormal = pix;
refresh();
}
void ImageTxtBtn::setPixHover(const QPixmap& pix)
{
pixHover = pix;
refresh();
}
void ImageTxtBtn::setPixPressed(const QPixmap& pix)
{
pixPressed = pix;
refresh();
}
void ImageTxtBtn::setPixDisabled(const QPixmap& pix)
{
pixDisabled = pix;
refresh();
}
void ImageTxtBtn::setText(const QString& text)
{
txt->setText(text);
txt->resize(size());
txt->move(0, 0);
txt->show();
}
void ImageTxtBtn::setTextFont(const QString& fontFamily, QColor color, int font_size)
{
this->fontFamily = fontFamily;
fontColor = color;
fontSize = font_size;
txt->setStyleSheet(jlib::qt::build_style(fontColor, fontSize, this->fontFamily) + (this->bold ? "font-weight:bold;" : ""));
}
void ImageTxtBtn::setTextFontFamily(const QString& fontFamily)
{
this->fontFamily = fontFamily;
txt->setStyleSheet(jlib::qt::build_style(fontColor, fontSize, this->fontFamily) + (this->bold ? "font-weight:bold;" : ""));
}
void ImageTxtBtn::setTextColor(QColor color)
{
fontColor = color;
txt->setStyleSheet(jlib::qt::build_style(fontColor, fontSize, this->fontFamily) + (this->bold ? "font-weight:bold;" : ""));
}
void ImageTxtBtn::setTextSize(int sz)
{
fontSize = sz;
txt->setStyleSheet(jlib::qt::build_style(fontColor, fontSize, this->fontFamily) + (this->bold ? "font-weight:bold;" : ""));
}
void ImageTxtBtn::setTextBold(bool bold)
{
this->bold = bold;
txt->setStyleSheet(jlib::qt::build_style(fontColor, fontSize, this->fontFamily) + (this->bold ? "font-weight:bold;" : ""));
}
void ImageTxtBtn::setEnabled(bool able)
{
is_disabled_ = !able;
__super::setEnabled(able);
refresh();
}
void ImageTxtBtn::enterEvent(QEvent* e)
{
if (is_disabled_) { return; }
setCursor(QCursor(Qt::PointingHandCursor));
is_hover_ = true;
refresh();
}
void ImageTxtBtn::leaveEvent(QEvent* e)
{
if (is_disabled_) { return; }
setCursor(QCursor(Qt::ArrowCursor));
is_hover_ = false;
refresh();
}
void ImageTxtBtn::mousePressEvent(QMouseEvent* e)
{
if (is_disabled_ || e->button() != Qt::LeftButton)return;
is_pressed_ = true;
refresh();
}
void ImageTxtBtn::mouseReleaseEvent(QMouseEvent* e)
{
if (is_disabled_ || e->button() != Qt::LeftButton)return;
is_pressed_ = false;
refresh();
emit clicked();
}
void ImageTxtBtn::refresh()
{
QPixmap pix = pixNormal;
if (is_hover_ && !pixHover.isNull()) {
pix = pixHover;
}
if (is_pressed_ && !pixPressed.isNull()) {
pix = pixPressed;
}
if (is_disabled_ && !pixDisabled.isNull()) {
pix = pixDisabled;
}
if (!pix.isNull()) {
setPixmap(pix);
}
}
#pragma once
#include <QLabel>
#include <QVariant>
class QLabel;
class ImageTxtBtn : public QLabel
{
Q_OBJECT
public:
ImageTxtBtn(QWidget* parent = nullptr);
virtual ~ImageTxtBtn() {}
void setPixNormal(const QPixmap& pix);
void setPixHover(const QPixmap& pix);
void setPixPressed(const QPixmap& pix);
void setPixDisabled(const QPixmap& pix);
void setText(const QString& text);
void setTextFont(const QString& fontFamily, QColor color = Qt::black, int font_size = 12);
void setTextFontFamily(const QString& fontFamily);
void setTextColor(QColor color = Qt::black);
void setTextSize(int sz = 12);
void setTextBold(bool bold);
void setEnabled(bool able);
void setData(const QVariant& val) { data_ = val; }
QVariant getData() const { return data_; }
signals:
void clicked();
protected:
virtual void enterEvent(QEvent* e) override;
virtual void leaveEvent(QEvent* e) override;
virtual void mousePressEvent(QMouseEvent* e) override;
virtual void mouseReleaseEvent(QMouseEvent* e) override;
void refresh();
private:
QPixmap pixNormal{};
QPixmap pixHover{};
QPixmap pixPressed{};
QPixmap pixDisabled{};
QLabel* txt{};
QString fontFamily{};
QColor fontColor = Qt::black;
int fontSize = 12;
bool bold = false;
bool is_disabled_ = false;
bool is_pressed_ = false;
bool is_hover_ = false;
QVariant data_{};
};
...@@ -10,13 +10,19 @@ RndButton::RndButton(QWidget* parent) ...@@ -10,13 +10,19 @@ RndButton::RndButton(QWidget* parent)
txt_ = new QLabel(this); txt_ = new QLabel(this);
txt_->setAlignment(Qt::AlignCenter); txt_->setAlignment(Qt::AlignCenter);
txt_->hide(); txt_->hide();
normal_color_ = def_colors::control_bk;
hightlight_color_ = Qt::lightGray;
font_sz_ = 12;
txt_color_ = Qt::white;
} }
RndButton::~RndButton() RndButton::~RndButton()
{ {
} }
void RndButton::set_attr(QString txt, QSize sz, int font_size) void RndButton::set_attr(const QString& txt, const QSize& sz, int font_size)
{ {
font_sz_ = font_size; font_sz_ = font_size;
txt_->setStyleSheet(build_style(Qt::white, font_size)); txt_->setStyleSheet(build_style(Qt::white, font_size));
...@@ -32,19 +38,55 @@ void RndButton::set_attr(QString txt, QSize sz, int font_size) ...@@ -32,19 +38,55 @@ void RndButton::set_attr(QString txt, QSize sz, int font_size)
update(); update();
} }
void RndButton::set_text(const QString& txt)
{
txt_->setText(txt);
}
void RndButton::set_size(const QSize& sz)
{
setFixedSize(sz);
txt_->resize(size());
txt_->move(0, 0);
}
void RndButton::set_font_size(int font_size)
{
font_sz_ = font_size;
txt_->setStyleSheet(build_style(txt_color_, font_sz_));
}
void RndButton::set_highlight(bool on) void RndButton::set_highlight(bool on)
{ {
is_highlighted_ = on; is_highlighted_ = on;
bk_color_ = is_highlighted_ ? Qt::lightGray : def_colors::control_bk; bk_color_ = is_highlighted_ ? hightlight_color_ : normal_color_;
update();
}
void RndButton::set_normal_color(QColor color)
{
normal_color_ = color;
update();
}
void RndButton::set_highlight_color(QColor color)
{
hightlight_color_ = color;
update(); update();
} }
void RndButton::set_text_color(QColor color)
{
txt_color_ = color;
txt_->setStyleSheet(build_style(txt_color_, font_sz_));
}
void RndButton::paintEvent(QPaintEvent* e) void RndButton::paintEvent(QPaintEvent* e)
{ {
QPainter painter(this); QPainter painter(this);
painter.setRenderHint(QPainter::Antialiasing, true); painter.setRenderHint(QPainter::Antialiasing, true);
QPainterPath path; QPainterPath path;
path.addRoundedRect(QRectF(0, 0, width(), height()), 10, 10); path.addRoundedRect(QRectF(0, 0, width(), height()), 5, 5);
QPen pen(Qt::black, 1); QPen pen(Qt::black, 1);
painter.setPen(pen); painter.setPen(pen);
painter.fillPath(path, bk_color_); painter.fillPath(path, bk_color_);
...@@ -55,7 +97,7 @@ void RndButton::enterEvent(QEvent* e) ...@@ -55,7 +97,7 @@ void RndButton::enterEvent(QEvent* e)
{ {
if (!isEnabled()) { return; } if (!isEnabled()) { return; }
setCursor(QCursor(Qt::PointingHandCursor)); setCursor(QCursor(Qt::PointingHandCursor));
bk_color_ = Qt::darkGray; bk_color_ = normal_color_;
update(); update();
emit sig_focus_on(); emit sig_focus_on();
...@@ -66,7 +108,7 @@ void RndButton::leaveEvent(QEvent* e) ...@@ -66,7 +108,7 @@ void RndButton::leaveEvent(QEvent* e)
if (!isEnabled()) { return; } if (!isEnabled()) { return; }
setCursor(QCursor(Qt::ArrowCursor)); setCursor(QCursor(Qt::ArrowCursor));
bk_color_ = is_highlighted_ ? Qt::lightGray : def_colors::control_bk; bk_color_ = is_highlighted_ ? hightlight_color_ : normal_color_;
update(); update();
is_pressed_ = false; is_pressed_ = false;
...@@ -75,7 +117,7 @@ void RndButton::leaveEvent(QEvent* e) ...@@ -75,7 +117,7 @@ void RndButton::leaveEvent(QEvent* e)
void RndButton::mousePressEvent(QMouseEvent* e) void RndButton::mousePressEvent(QMouseEvent* e)
{ {
if (e->button() != Qt::LeftButton)return; if (e->button() != Qt::LeftButton)return;
bk_color_ = def_colors::control_bk; bk_color_ = hightlight_color_;
update(); update();
is_pressed_ = true; is_pressed_ = true;
...@@ -84,7 +126,7 @@ void RndButton::mousePressEvent(QMouseEvent* e) ...@@ -84,7 +126,7 @@ void RndButton::mousePressEvent(QMouseEvent* e)
void RndButton::mouseReleaseEvent(QMouseEvent* e) void RndButton::mouseReleaseEvent(QMouseEvent* e)
{ {
if (e->button() != Qt::LeftButton)return; if (e->button() != Qt::LeftButton)return;
bk_color_ = Qt::darkGray; bk_color_ = normal_color_;
update(); update();
if (is_pressed_) { if (is_pressed_) {
......
...@@ -5,19 +5,23 @@ ...@@ -5,19 +5,23 @@
//namespace HBVideoPlatform { //namespace HBVideoPlatform {
//namespace common { //namespace common {
#include <QtWidgets>
class RndButton : public QWidget class RndButton : public QWidget
{ {
Q_OBJECT Q_OBJECT
public: public:
RndButton(QWidget* parent); RndButton(QWidget* parent = nullptr);
~RndButton(); virtual ~RndButton();
void set_attr(QString txt, QSize btn_sz = { 60, 30 }, int font_size = 14); void set_attr(const QString& txt, const QSize& btn_sz = { 60, 30 }, int font_size = 12);
void set_text(const QString& txt);
void set_size(const QSize& sz = { 60, 30 });
void set_font_size(int font_size = 12);
void set_highlight(bool on = true); void set_highlight(bool on = true);
void set_normal_color(QColor color = 0x2c2d30);
void set_highlight_color(QColor color = Qt::gray);
void set_text_color(QColor color = Qt::white);
protected: protected:
virtual void paintEvent(QPaintEvent* e) override; virtual void paintEvent(QPaintEvent* e) override;
...@@ -32,9 +36,10 @@ signals: ...@@ -32,9 +36,10 @@ signals:
private: private:
QLabel* txt_ = {}; QLabel* txt_ = {};
QPixmap pixmap_ = {};
int font_sz_ = {}; int font_sz_ = {};
QColor bk_color_ = {}; QColor bk_color_ = {};
QColor normal_color_ = {};
QColor hightlight_color_ = {};
QColor txt_color_ = {}; QColor txt_color_ = {};
bool is_pressed_ = false; bool is_pressed_ = false;
bool is_highlighted_ = false; bool is_highlighted_ = false;
......
...@@ -109,6 +109,7 @@ ...@@ -109,6 +109,7 @@
<ClCompile Include="View\CheckBtn.cpp" /> <ClCompile Include="View\CheckBtn.cpp" />
<ClCompile Include="View\HttpDlg.cpp" /> <ClCompile Include="View\HttpDlg.cpp" />
<ClCompile Include="View\IconBtn.cpp" /> <ClCompile Include="View\IconBtn.cpp" />
<ClCompile Include="View\ImageTxtBtn.cpp" />
<ClCompile Include="View\ProgressDialog.cpp" /> <ClCompile Include="View\ProgressDialog.cpp" />
<ClCompile Include="View\QrCodeView.cpp" /> <ClCompile Include="View\QrCodeView.cpp" />
<ClCompile Include="View\TextMenu.cpp" /> <ClCompile Include="View\TextMenu.cpp" />
...@@ -119,10 +120,12 @@ ...@@ -119,10 +120,12 @@
<ItemGroup> <ItemGroup>
<ClInclude Include="Model\HttpDlgErrorCode.h" /> <ClInclude Include="Model\HttpDlgErrorCode.h" />
<ClInclude Include="resource.h" /> <ClInclude Include="resource.h" />
<ClInclude Include="SqlHelper.h" />
<ClInclude Include="Util\qrcode\BitBuffer.hpp" /> <ClInclude Include="Util\qrcode\BitBuffer.hpp" />
<ClInclude Include="Util\qrcode\QrCode.hpp" /> <ClInclude Include="Util\qrcode\QrCode.hpp" />
<ClInclude Include="Util\qrcode\QrSegment.hpp" /> <ClInclude Include="Util\qrcode\QrSegment.hpp" />
<ClInclude Include="Util\QRunGuard.h" /> <ClInclude Include="Util\QRunGuard.h" />
<QtMoc Include="View\ImageTxtBtn.h" />
<QtMoc Include="View\QrCodeView.h" /> <QtMoc Include="View\QrCodeView.h" />
<QtMoc Include="View\HttpDlg.h" /> <QtMoc Include="View\HttpDlg.h" />
<QtMoc Include="View\ProgressDialog.h" /> <QtMoc Include="View\ProgressDialog.h" />
......
...@@ -95,6 +95,9 @@ ...@@ -95,6 +95,9 @@
<ClCompile Include="Util\qrcode\QrSegment.cpp"> <ClCompile Include="Util\qrcode\QrSegment.cpp">
<Filter>Util\qrcode</Filter> <Filter>Util\qrcode</Filter>
</ClCompile> </ClCompile>
<ClCompile Include="View\ImageTxtBtn.cpp">
<Filter>View</Filter>
</ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="qt.h"> <ClInclude Include="qt.h">
...@@ -142,6 +145,9 @@ ...@@ -142,6 +145,9 @@
<ClInclude Include="Util\qrcode\QrSegment.hpp"> <ClInclude Include="Util\qrcode\QrSegment.hpp">
<Filter>Util\qrcode</Filter> <Filter>Util\qrcode</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="SqlHelper.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="qt_global.h"> <ClInclude Include="qt_global.h">
...@@ -182,6 +188,9 @@ ...@@ -182,6 +188,9 @@
<QtMoc Include="View\QrCodeView.h"> <QtMoc Include="View\QrCodeView.h">
<Filter>View</Filter> <Filter>View</Filter>
</QtMoc> </QtMoc>
<QtMoc Include="View\ImageTxtBtn.h">
<Filter>View</Filter>
</QtMoc>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<QtUic Include="View\ProgressDialog.ui"> <QtUic Include="View\ProgressDialog.ui">
......
...@@ -14,15 +14,16 @@ int main(int argc, char *argv[]) ...@@ -14,15 +14,16 @@ int main(int argc, char *argv[])
//jlib::init_logger(L"qt_test"); //jlib::init_logger(L"qt_test");
//jlib::qt::test_monitor(); //jlib::qt::test_monitor();
//qt_test w;
//w.show();
Q_INIT_RESOURCE(jlibqt); Q_INIT_RESOURCE(jlibqt);
HttpDlg dlg(nullptr, 10); qt_test w;
w.show();
//HttpDlg dlg(nullptr, 10);
QString url = "https://local.hb3344.com/api/test/version"; //QString url = "https://local.hb3344.com/api/test/version";
dlg.get(url); //dlg.get(url);
return a.exec(); return a.exec();
} }
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
#include "../../jlib/qt/View/LoadingView.h" #include "../../jlib/qt/View/LoadingView.h"
#include "../../jlib/qt/View/TitleBar.h" #include "../../jlib/qt/View/TitleBar.h"
#include "../../jlib/qt/View/RndButton.h" #include "../../jlib/qt/View/RndButton.h"
#include "../../jlib/qt/View/ImageTxtBtn.h"
using namespace jlib::qt; using namespace jlib::qt;
...@@ -32,4 +33,19 @@ qt_test::qt_test(QWidget *parent) ...@@ -32,4 +33,19 @@ qt_test::qt_test(QWidget *parent)
bgColorBtn->setText(QString::fromLocal8Bit("BgColorBtnť")); bgColorBtn->setText(QString::fromLocal8Bit("BgColorBtnť"));
bgColorBtn->set_btn_attr(def_colors::control_bk, def_colors::control_bk_suspend, def_colors::control_text_font, 12); bgColorBtn->set_btn_attr(def_colors::control_bk, def_colors::control_bk_suspend, def_colors::control_text_font, 12);
hbox->addWidget(bgColorBtn); hbox->addWidget(bgColorBtn);
auto rndBtn = new RndButton();
rndBtn->set_attr(QString::fromLocal8Bit("RndButtonť"), QSize(160, 30));
hbox->addWidget(rndBtn);
auto imgTxtBtn = new ImageTxtBtn();
QPixmap pix;
pix.load(":/test_qt/image.png");
imgTxtBtn->setPixNormal(pix);
imgTxtBtn->setFixedSize(pix.size());
imgTxtBtn->setText(QString::fromLocal8Bit("ImageTxtBtnť"));
imgTxtBtn->setTextColor(Qt::white);
imgTxtBtn->setTextBold(true);
hbox->addWidget(imgTxtBtn);
} }
<RCC> <RCC>
<qresource prefix="test_qt"> <qresource prefix="/test_qt">
<file>image.png</file>
</qresource> </qresource>
</RCC> </RCC>
...@@ -74,7 +74,7 @@ ...@@ -74,7 +74,7 @@
<OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile> <OutputFile>$(OutDir)\$(ProjectName).exe</OutputFile>
<GenerateDebugInformation>true</GenerateDebugInformation> <GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalDependencies>jlibqt.lib;$(DEVLIBS)\json\jsoncpp-1.9.4-install\bin\Debug\jsoncpp.lib;%(AdditionalDependencies)</AdditionalDependencies> <AdditionalDependencies>jlibqt.lib;$(DEVLIBS)\json\jsoncpp-1.9.4-install\bin\Debug\jsoncpp.lib;%(AdditionalDependencies)</AdditionalDependencies>
<AdditionalLibraryDirectories>$(OutDir);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories> <AdditionalLibraryDirectories>$(OutDir);$(QTDIR)\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link> </Link>
</ItemDefinitionGroup> </ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
......
...@@ -213,6 +213,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "qt", "qt", "{F118E1C9-F461- ...@@ -213,6 +213,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "qt", "qt", "{F118E1C9-F461-
..\jlib\qt\QtStylesheet.h = ..\jlib\qt\QtStylesheet.h ..\jlib\qt\QtStylesheet.h = ..\jlib\qt\QtStylesheet.h
..\jlib\qt\QtUtils.h = ..\jlib\qt\QtUtils.h ..\jlib\qt\QtUtils.h = ..\jlib\qt\QtUtils.h
..\jlib\qt\signal_slot.h = ..\jlib\qt\signal_slot.h ..\jlib\qt\signal_slot.h = ..\jlib\qt\signal_slot.h
..\jlib\qt\SqlHelper.h = ..\jlib\qt\SqlHelper.h
EndProjectSection EndProjectSection
EndProject EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Ctrl", "Ctrl", "{0E82BB61-0D27-42B4-8F11-98DB2A21C168}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Ctrl", "Ctrl", "{0E82BB61-0D27-42B4-8F11-98DB2A21C168}"
...@@ -255,6 +256,9 @@ EndProject ...@@ -255,6 +256,9 @@ EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_version", "test_version\test_version.vcxproj", "{704FF7EB-D633-4D0A-957B-01D908478D6D}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_version", "test_version\test_version.vcxproj", "{704FF7EB-D633-4D0A-957B-01D908478D6D}"
EndProject EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qt_test", "qt_test\qt_test.vcxproj", "{EAAE08F7-6CD8-4708-9FD4-ADD856CC6658}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qt_test", "qt_test\qt_test.vcxproj", "{EAAE08F7-6CD8-4708-9FD4-ADD856CC6658}"
ProjectSection(ProjectDependencies) = postProject
{B12702AD-ABFB-343A-A199-8E24837244A3} = {B12702AD-ABFB-343A-A199-8E24837244A3}
EndProjectSection
EndProject EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_ping", "test_ping\test_ping.vcxproj", "{26D2B628-713F-419A-B2E2-32BDFA803E3C}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "test_ping", "test_ping\test_ping.vcxproj", "{26D2B628-713F-419A-B2E2-32BDFA803E3C}"
EndProject EndProject
...@@ -382,6 +386,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "misc", "misc", "{BCF77277-B ...@@ -382,6 +386,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "misc", "misc", "{BCF77277-B
..\jlib\misc\sudoku.h = ..\jlib\misc\sudoku.h ..\jlib\misc\sudoku.h = ..\jlib\misc\sudoku.h
EndProjectSection EndProjectSection
EndProject EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testSqlHelperQt", "testSqlHelperQt\testSqlHelperQt.vcxproj", "{DADB235B-D5CF-4D42-A208-01E0535DDA35}"
EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM = Debug|ARM Debug|ARM = Debug|ARM
...@@ -1134,6 +1140,16 @@ Global ...@@ -1134,6 +1140,16 @@ Global
{E8551DB0-274F-493A-88AF-7383E47F49FA}.Release|x64.Build.0 = Release|x64 {E8551DB0-274F-493A-88AF-7383E47F49FA}.Release|x64.Build.0 = Release|x64
{E8551DB0-274F-493A-88AF-7383E47F49FA}.Release|x86.ActiveCfg = Release|Win32 {E8551DB0-274F-493A-88AF-7383E47F49FA}.Release|x86.ActiveCfg = Release|Win32
{E8551DB0-274F-493A-88AF-7383E47F49FA}.Release|x86.Build.0 = Release|Win32 {E8551DB0-274F-493A-88AF-7383E47F49FA}.Release|x86.Build.0 = Release|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Debug|ARM.ActiveCfg = Debug|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Debug|ARM64.ActiveCfg = Debug|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Debug|x64.ActiveCfg = Debug|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Debug|x86.ActiveCfg = Debug|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Debug|x86.Build.0 = Debug|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Release|ARM.ActiveCfg = Release|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Release|ARM64.ActiveCfg = Release|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Release|x64.ActiveCfg = Release|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Release|x86.ActiveCfg = Release|Win32
{DADB235B-D5CF-4D42-A208-01E0535DDA35}.Release|x86.Build.0 = Release|Win32
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
...@@ -1228,6 +1244,7 @@ Global ...@@ -1228,6 +1244,7 @@ Global
{441E6793-7CDA-4D51-81BD-7A38520F1C1D} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A} {441E6793-7CDA-4D51-81BD-7A38520F1C1D} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A}
{E8551DB0-274F-493A-88AF-7383E47F49FA} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A} {E8551DB0-274F-493A-88AF-7383E47F49FA} = {729A65CE-3F07-4C2E-ACDC-F9EEC6477F2A}
{BCF77277-B4F8-49CF-B213-D8086F3BCEFD} = {42703978-A988-403D-9723-E35527FA8A07} {BCF77277-B4F8-49CF-B213-D8086F3BCEFD} = {42703978-A988-403D-9723-E35527FA8A07}
{DADB235B-D5CF-4D42-A208-01E0535DDA35} = {5AFB3C82-FDEA-458C-9B56-E28A3F96F113}
EndGlobalSection EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D} SolutionGuid = {A8EBEA58-739C-4DED-99C0-239779F57D5D}
......
#include <QtCore/QCoreApplication>
#include "../../jlib/qt/SqlHelper.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
return a.exec();
}
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{DADB235B-D5CF-4D42-A208-01E0535DDA35}</ProjectGuid>
<Keyword>QtVS_v304</Keyword>
<QtMsBuild Condition="'$(QtMsBuild)'=='' OR !Exists('$(QtMsBuild)\qt.targets')">$(MSBuildProjectDirectory)\QtMsBuild</QtMsBuild>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v142</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt_defaults.props')">
<Import Project="$(QtMsBuild)\qt_defaults.props" />
</ImportGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="QtSettings">
<QtInstall>5.9.8</QtInstall>
<QtModules>core;sql</QtModules>
<QtBuildConfig>debug</QtBuildConfig>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="QtSettings">
<QtInstall>5.9.8</QtInstall>
<QtModules>core</QtModules>
<QtBuildConfig>release</QtBuildConfig>
</PropertyGroup>
<Target Name="QtMsBuildNotFound" BeforeTargets="CustomBuild;ClCompile" Condition="!Exists('$(QtMsBuild)\qt.targets') or !Exists('$(QtMsBuild)\qt.props')">
<Message Importance="High" Text="QtMsBuild: could not locate qt.targets, qt.props; project may not build correctly." />
</Target>
<ImportGroup Label="ExtensionSettings" />
<ImportGroup Label="Shared" />
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(QtMsBuild)\Qt.props" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
<Import Project="$(QtMsBuild)\Qt.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'">
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'">
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'" Label="Configuration">
<ClCompile>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
<Optimization>Disabled</Optimization>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'" Label="Configuration">
<ClCompile>
<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<DebugInformationFormat>None</DebugInformationFormat>
<Optimization>MaxSpeed</Optimization>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>false</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\jlib\qt\SqlHelper.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Condition="Exists('$(QtMsBuild)\qt.targets')">
<Import Project="$(QtMsBuild)\qt.targets" />
</ImportGroup>
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>qrc;rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
<Filter Include="Translation Files">
<UniqueIdentifier>{639EADAA-A684-42e4-A9AD-28FC9BCB8F7C}</UniqueIdentifier>
<Extensions>ts</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\..\jlib\qt\SqlHelper.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
</Project>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:56:32.1228386Z</QtLastBackgroundBuild>
</PropertyGroup>
<PropertyGroup Label="QtSettings" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<QtLastBackgroundBuild>2021-12-05T20:46:31.9967457Z</QtLastBackgroundBuild>
</PropertyGroup>
</Project>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment