add book
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
# Copyright (c) Daniel Gakwaya.
|
||||
# SPDX-License-Identifier: MIT
|
||||
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
project(10-SwipeViewPageIndicator VERSION 0.1 LANGUAGES CXX)
|
||||
|
||||
set(CMAKE_AUTORCC ON)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
find_package(Qt6 6.5 REQUIRED COMPONENTS Quick)
|
||||
|
||||
qt_standard_project_setup(REQUIRES 6.5)
|
||||
|
||||
qt_add_executable(app10-SwipeViewPageIndicator
|
||||
main.cpp resource.qrc
|
||||
)
|
||||
|
||||
qt_add_qml_module(app10-SwipeViewPageIndicator
|
||||
URI 10-SwipeViewPageIndicator
|
||||
VERSION 1.0
|
||||
QML_FILES Main.qml
|
||||
)
|
||||
|
||||
set_target_properties(app10-SwipeViewPageIndicator PROPERTIES
|
||||
MACOSX_BUNDLE_GUI_IDENTIFIER my.example.com
|
||||
MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
|
||||
MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
|
||||
MACOSX_BUNDLE TRUE
|
||||
WIN32_EXECUTABLE TRUE
|
||||
)
|
||||
|
||||
target_link_libraries(app10-SwipeViewPageIndicator
|
||||
PRIVATE Qt6::Quick
|
||||
)
|
||||
|
||||
install(TARGETS app10-SwipeViewPageIndicator
|
||||
BUNDLE DESTINATION .
|
||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||
)
|
||||
@@ -0,0 +1,52 @@
|
||||
// Copyright (c) Daniel Gakwaya.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
import QtQuick
|
||||
import QtQuick.Controls
|
||||
|
||||
Window {
|
||||
visible: true
|
||||
width: 640
|
||||
height: 480
|
||||
title: qsTr("PageIndicator and SwipeView")
|
||||
|
||||
SwipeView{
|
||||
id: swipeViewId
|
||||
anchors.fill: parent
|
||||
currentIndex: pageIndicatorId.currentIndex
|
||||
anchors.bottomMargin: 20
|
||||
|
||||
Image {
|
||||
id: image1
|
||||
fillMode: Image.PreserveAspectFit
|
||||
//source: "https://www.learnqt.guide/images/qt_quick_fundamentals.png"
|
||||
source:"qrc:/images/1.png"
|
||||
}
|
||||
Image {
|
||||
id: image2
|
||||
fillMode: Image.PreserveAspectFit
|
||||
//source: "https://www.learnqt.guide/images/qt_quick_intermediate.png"
|
||||
source: "qrc:/images/2.png"
|
||||
}
|
||||
Image {
|
||||
id: image3
|
||||
fillMode: Image.PreserveAspectFit
|
||||
//source: "https://www.learnqt.guide/images/qt_quick_advanced.png"
|
||||
source: "qrc:/images/3.png"
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
PageIndicator{
|
||||
id: pageIndicatorId
|
||||
anchors.bottom: parent.bottom
|
||||
anchors.horizontalCenter: parent.horizontalCenter
|
||||
|
||||
//Page indicator specific properties
|
||||
currentIndex: swipeViewId.currentIndex
|
||||
interactive: true
|
||||
count: swipeViewId.count
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 118 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 497 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 513 KiB |
@@ -0,0 +1,20 @@
|
||||
// Copyright (c) Daniel Gakwaya.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <QGuiApplication>
|
||||
#include <QQmlApplicationEngine>
|
||||
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
|
||||
QGuiApplication app(argc, argv);
|
||||
|
||||
QQmlApplicationEngine engine;
|
||||
QObject::connect(&engine, &QQmlApplicationEngine::objectCreationFailed,
|
||||
&app, []() { QCoreApplication::exit(-1); },
|
||||
Qt::QueuedConnection);
|
||||
engine.loadFromModule("10-SwipeViewPageIndicator", "Main");
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>images/1.png</file>
|
||||
<file>images/2.png</file>
|
||||
<file>images/3.png</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
Reference in New Issue
Block a user