diff --git a/CMakeLists.txt b/CMakeLists.txt --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,6 +42,7 @@ if (BUILD_TESTING) add_subdirectory(autotests) add_subdirectory(tests) + add_subdirectory(examples) endif() # create a Config.cmake and a ConfigVersion.cmake file and install them diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt new file mode 100644 --- /dev/null +++ b/examples/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory(kmessagebox) diff --git a/examples/kmessagebox/CMakeLists.txt b/examples/kmessagebox/CMakeLists.txt new file mode 100644 --- /dev/null +++ b/examples/kmessagebox/CMakeLists.txt @@ -0,0 +1,11 @@ +set(SRCS main.cpp) + +add_executable(kwidgetaddons-example-kmessagebox ${SRCS}) + +target_link_libraries(kwidgetaddons-example-kmessagebox + Qt5::Widgets + KF5::WidgetsAddons +) + +# We don't want to install the tutorial +#install(TARGETS kwidgetaddons-example-kmessagebox ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) diff --git a/examples/kmessagebox/main.cpp b/examples/kmessagebox/main.cpp new file mode 100644 --- /dev/null +++ b/examples/kmessagebox/main.cpp @@ -0,0 +1,56 @@ +/* This file is part of the KDE project + * + * Copyright (C) 2018 Friedrich W. H. Kossebau + * Copyright (C) 2018 Olivier Churlaud + * Copyright (C) 2016 by Juan Carlos Torres + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + +#include +#include + +#include + +int main (int argc, char *argv[]) +{ + QApplication app(argc, argv); + + // Define a button + KGuiItem yesButton( + QStringLiteral("Hello"), // the button label + QStringLiteral("view-filter"), // iconName, can be empty to fallback to default + QStringLiteral("This is a tooltip"), + QStringLiteral("This is a WhatsThis help text.") + ); + + KMessageBox::ButtonCode res = KMessageBox::questionYesNo( + nullptr, // Parent, here none + // The description can contain HTML + QStringLiteral("Description to tell you to click
on either button"), + QStringLiteral("My Title"), + yesButton + /*noButton not explicitely set, falls back to default*/ + ); + + if (res == KMessageBox::Yes) { + std::cout << "You clicked Hello\n"; + return EXIT_SUCCESS; + } else { + std::cout << "You clicked No\n"; + return EXIT_FAILURE; + } +}