├── .gitignore ├── CMakeLists.txt ├── dolphin ├── CMakeLists.txt ├── advanced_dolphin_plugin │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── advanced_dolphin_plugin.kdevtemplate │ └── src │ │ ├── %{APPNAMELC}.cpp │ │ ├── %{APPNAMELC}.desktop │ │ ├── %{APPNAMELC}.h │ │ └── CMakeLists.txt ├── dolphinservicemenuplugin │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── dolphinservicemenuplugin.kdevtemplate │ └── src │ │ ├── %{APPNAMELC}.cpp │ │ ├── %{APPNAMELC}.desktop │ │ ├── %{APPNAMELC}.h │ │ └── CMakeLists.txt └── dolphinservicemenus │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── SimpleMenu.desktop │ ├── Submenu.desktop │ └── dolphinservicemenus.kdevtemplate ├── java_templates ├── .gitignore ├── CMakeLists.txt ├── basic_javafx_template │ ├── %{APPNAME}.iml │ ├── .gitignore │ ├── Makefile │ ├── basic_javafx_template.kdevtemplate │ └── src │ │ └── main │ │ └── Main.java ├── java_apache_commons_cli_template │ ├── %{APPNAMELC}.iml │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── java.png │ ├── java_apache_commons_cli_template.kdevtemplate │ ├── pkg2appimage │ ├── pom.xml │ ├── recipies │ │ ├── %{APPNAMELC}-java11openjdk.yml │ │ └── %{APPNAMELC}-java11openjdkmodular.yml │ └── src │ │ ├── deb │ │ ├── control │ │ │ └── control │ │ └── install │ │ │ ├── %{APPNAMELC} │ │ │ └── %{APPNAMELC}_rpm │ │ └── main │ │ └── java │ │ └── main │ │ ├── Main.java │ │ └── Utils.java ├── java_argparse4j_cli_template │ ├── %{APPNAMELC}.iml │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── java.png │ ├── java_argparse4j_cli_template.kdevtemplate │ ├── pkg2appimage │ ├── pom.xml │ ├── recipies │ │ ├── %{APPNAMELC}-java11openjdk.yml │ │ └── %{APPNAMELC}-java11openjdkmodular.yml │ └── src │ │ ├── deb │ │ ├── control │ │ │ └── control │ │ └── install │ │ │ ├── %{APPNAMELC} │ │ │ └── %{APPNAMELC}_rpm │ │ └── main │ │ └── java │ │ └── main │ │ └── Main.java ├── java_jcommander_cli_template │ ├── %{APPNAMELC}.iml │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── java.png │ ├── java_jcommander_cli_template.kdevtemplate │ ├── pkg2appimage │ ├── pom.xml │ ├── recipies │ │ ├── %{APPNAMELC}-java11openjdk.yml │ │ └── %{APPNAMELC}-java11openjdkmodular.yml │ └── src │ │ ├── deb │ │ ├── control │ │ │ └── control │ │ └── install │ │ │ ├── %{APPNAMELC} │ │ │ └── %{APPNAMELC}_rpm │ │ └── main │ │ └── java │ │ └── main │ │ ├── Args.java │ │ └── Main.java ├── java_junit5_file_template │ ├── java_junit5_file_template.desktop │ ├── java_junit5_file_template.java │ └── options.kcfg ├── java_maven_basic_setup │ ├── %{APPNAMELC}.iml │ ├── .gitignore │ ├── Makefile │ ├── java_maven_basic_setup.kdevtemplate │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── main │ │ │ └── Main.java │ │ └── test │ │ └── java │ │ └── MainTest.java ├── java_picocli_cli_template │ ├── %{APPNAMELC}.iml │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── java.png │ ├── java_picocli_cli_template.kdevtemplate │ ├── pkg2appimage │ ├── pom.xml │ ├── recipies │ │ ├── %{APPNAMELC}-java11openjdk.yml │ │ └── %{APPNAMELC}-java11openjdkmodular.yml │ └── src │ │ ├── deb │ │ ├── control │ │ │ └── control │ │ └── install │ │ │ ├── %{APPNAMELC} │ │ │ └── %{APPNAMELC}_rpm │ │ ├── main │ │ └── java │ │ │ └── main │ │ │ ├── Args.java │ │ │ └── Main.java │ │ └── test │ │ └── java │ │ └── ExampleTest.java ├── javafx_fxml_maven_template │ ├── %{APPNAMELC}.iml │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── javafx_fxml_maven_template.kdevtemplate │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── main │ │ │ ├── Controller.java │ │ │ └── Main.java │ │ └── resources │ │ ├── main │ │ └── sample.fxml │ │ └── translations.properties ├── javafx_fxml_maven_testfx_template │ ├── %{APPNAMELC}.iml │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── javafx_fxml_maven_testfx_template.kdevtemplate │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── main │ │ │ │ ├── Controller.java │ │ │ │ └── Main.java │ │ └── resources │ │ │ ├── main │ │ │ └── sample.fxml │ │ │ └── translations.properties │ │ └── test │ │ └── java │ │ └── main │ │ └── MainTest.java ├── javafx_fxml_template │ ├── %{APPNAME}.iml │ ├── .gitignore │ ├── Makefile │ ├── javafx_fxml_template.kdevtemplate │ └── src │ │ └── main │ │ ├── Controller.java │ │ ├── Main.java │ │ └── sample.fxml └── javafx_maven_build_scripts │ ├── %{APPNAMELC}.iml │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── bintray.sh │ ├── java.png │ ├── javafx_maven_build_scripts.kdevtemplate │ ├── pkg2appimage │ ├── pom.xml │ ├── recipies │ ├── %{APPNAMELC}-java11openjdk.yml │ └── %{APPNAMELC}-javafxpackager.yml │ ├── snap │ └── snapcraft.yaml │ └── src │ ├── deb │ ├── control │ │ └── control │ └── install │ │ ├── %{APPNAMELC} │ │ ├── %{APPNAMELC}-snap.desktop │ │ ├── %{APPNAMELC}.desktop │ │ ├── %{APPNAMELC}_rpm │ │ └── %{APPNAMELC}_rpm.desktop │ ├── main │ ├── java │ │ └── main │ │ │ ├── Controller.java │ │ │ ├── Launcher.java │ │ │ └── Main.java │ └── resources │ │ ├── main │ │ └── sample.fxml │ │ └── translations.properties │ └── test │ └── java │ └── main │ └── MainTest.java ├── kdevelop_app_template ├── %{APPNAMELC} │ ├── %{APPNAMELC}.kdevtemplate │ ├── .gitignore │ └── ExampleFile.txt ├── .gitignore ├── CMakeLists.txt ├── kdevelop_app_template.kdevtemplate └── package.sh ├── kdevelop_file_template ├── %{APPNAMELC} │ ├── %{APPNAMELC}.desktop │ ├── DemoFile.txt │ └── options.kcfg ├── .gitignore ├── CMakeLists.txt ├── kdevelop_file_template_template.kdevtemplate └── package.sh ├── krunner_dbus_templates ├── CMakeLists.txt ├── krunner_dbus_cpp │ ├── .gitignore │ ├── CMakeLists.txt │ ├── krunner_dbus_cpp │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── krunner_dbus_cpp.kdevtemplate │ │ └── src │ │ │ ├── %{APPNAMELC}.cpp │ │ │ ├── %{APPNAMELC}.h │ │ │ ├── CMakeLists.txt │ │ │ ├── dbus_utils.h │ │ │ └── plasma-runner-%{APPNAMELC}.desktop │ └── package.sh ├── krunner_dbus_javascript │ ├── .gitignore │ ├── README.md │ ├── krunner_dbus_javascript.kdevtemplate │ ├── package.json │ ├── plasma-runner-%{APPNAMELC}.desktop │ └── src │ │ ├── dbus-connection.js │ │ ├── index.js │ │ └── runner.js ├── modular_krunner_python_template │ ├── %{APPNAMELC} │ │ ├── Runner.py │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── main.py │ │ ├── resources │ │ │ ├── %{APPNAMELC}_autostart.desktop │ │ │ └── plasma-runner-%{APPNAMELC}.desktop │ │ └── utilities │ │ │ ├── Action.py │ │ │ ├── Match.py │ │ │ └── __init__.py │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── python_modular_runner_template.kdevtemplate │ └── setup.py └── simple_krunner_python_template │ ├── %{APPNAMELC}.py │ ├── .gitignore │ ├── README.md │ ├── install.sh │ ├── org.kde.%{APPNAMELC}.service │ ├── plasma-runner-%{APPNAMELC}.desktop │ ├── simple_krunner_python_template.kdevtemplate │ └── uninstall.sh ├── package.sh ├── python_templates ├── CMakeLists.txt ├── PythonArgparseProject │ ├── %{APPNAMELC}.py │ ├── .gitignore │ └── python3_argparse_cli.kdevtemplate ├── PythonArgparseTypedModularProject │ ├── %{APPNAMELC} │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── main.py │ │ └── utilities │ │ │ ├── ArgsNamespace.py │ │ │ ├── CustomHelpFormatter.py │ │ │ └── __init__.py │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── python3_modular_argparse_cli.kdevtemplate │ ├── setup.py │ └── snap │ │ └── snapcraft.yaml └── PythonArgparseTypedProject │ ├── %{APPNAMELC}.py │ ├── .gitignore │ └── python3_argparse_cli.kdevtemplate ├── qt_cpp_templates ├── CMakeLists.txt ├── krunner_templates │ ├── CMakeLists.txt │ ├── krunner │ │ ├── CMakeLists.txt │ │ ├── basic_runner │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── Messages.sh │ │ │ ├── README.md │ │ │ ├── install.sh │ │ │ ├── runner.kdevtemplate │ │ │ └── src │ │ │ │ ├── %{APPNAMELC}.cpp │ │ │ │ ├── %{APPNAMELC}.h │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── plasma-runner-%{APPNAMELC}.desktop │ │ └── extended_runner │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── Messages.sh │ │ │ ├── README.md │ │ │ ├── install.sh │ │ │ ├── runner.kdevtemplate │ │ │ └── src │ │ │ ├── %{APPNAMELC}.cpp │ │ │ ├── %{APPNAMELC}.h │ │ │ ├── CMakeLists.txt │ │ │ └── plasma-runner-%{APPNAMELC}.desktop │ └── runner_kcmodule │ │ ├── CMakeLists.txt │ │ ├── extendedrunnerwithconfig │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── Messages.sh │ │ ├── README.md │ │ ├── install.sh │ │ ├── runnerwithkcmodule.kdevtemplate │ │ └── src │ │ │ ├── %{APPNAMELC}.cpp │ │ │ ├── %{APPNAMELC}.h │ │ │ ├── CMakeLists.txt │ │ │ ├── config │ │ │ ├── %{APPNAMELC}_config.cpp │ │ │ ├── %{APPNAMELC}_config.h │ │ │ ├── %{APPNAMELC}_config.ui │ │ │ └── plasma-runner-%{APPNAMELC}_config.desktop │ │ │ └── plasma-runner-%{APPNAMELC}.desktop │ │ └── runnerwithconfig │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── Messages.sh │ │ ├── README.md │ │ ├── install.sh │ │ ├── runnerwithkcmodule.kdevtemplate │ │ └── src │ │ ├── %{APPNAMELC}.cpp │ │ ├── %{APPNAMELC}.h │ │ ├── CMakeLists.txt │ │ ├── config │ │ ├── %{APPNAMELC}_config.cpp │ │ ├── %{APPNAMELC}_config.h │ │ ├── %{APPNAMELC}_config.ui │ │ └── plasma-runner-%{APPNAMELC}_config.desktop │ │ └── plasma-runner-%{APPNAMELC}.desktop └── qt_cli_templates │ ├── .gitignore │ ├── CMakeLists.txt │ ├── README.md │ ├── basic_qt_cli_template │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile │ ├── basic_qt_cli_template.kdevtemplate │ └── main.cpp │ └── validated_qt_cli_template │ ├── .gitignore │ ├── CMakeLists.txt │ ├── Makefile │ ├── Validator.cpp │ ├── Validator.h │ ├── main.cpp │ └── validated_qt_cli_template.kdevtemplate └── simple_desktop_application_file ├── simple_desktop_application_file.desktop └── template.desktop /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /dolphin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/CMakeLists.txt -------------------------------------------------------------------------------- /dolphin/advanced_dolphin_plugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/advanced_dolphin_plugin/.gitignore -------------------------------------------------------------------------------- /dolphin/advanced_dolphin_plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/advanced_dolphin_plugin/CMakeLists.txt -------------------------------------------------------------------------------- /dolphin/advanced_dolphin_plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/advanced_dolphin_plugin/README.md -------------------------------------------------------------------------------- /dolphin/advanced_dolphin_plugin/advanced_dolphin_plugin.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/advanced_dolphin_plugin/advanced_dolphin_plugin.kdevtemplate -------------------------------------------------------------------------------- /dolphin/advanced_dolphin_plugin/src/%{APPNAMELC}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/advanced_dolphin_plugin/src/%{APPNAMELC}.cpp -------------------------------------------------------------------------------- /dolphin/advanced_dolphin_plugin/src/%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/advanced_dolphin_plugin/src/%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /dolphin/advanced_dolphin_plugin/src/%{APPNAMELC}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/advanced_dolphin_plugin/src/%{APPNAMELC}.h -------------------------------------------------------------------------------- /dolphin/advanced_dolphin_plugin/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/advanced_dolphin_plugin/src/CMakeLists.txt -------------------------------------------------------------------------------- /dolphin/dolphinservicemenuplugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenuplugin/.gitignore -------------------------------------------------------------------------------- /dolphin/dolphinservicemenuplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenuplugin/CMakeLists.txt -------------------------------------------------------------------------------- /dolphin/dolphinservicemenuplugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenuplugin/README.md -------------------------------------------------------------------------------- /dolphin/dolphinservicemenuplugin/dolphinservicemenuplugin.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenuplugin/dolphinservicemenuplugin.kdevtemplate -------------------------------------------------------------------------------- /dolphin/dolphinservicemenuplugin/src/%{APPNAMELC}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenuplugin/src/%{APPNAMELC}.cpp -------------------------------------------------------------------------------- /dolphin/dolphinservicemenuplugin/src/%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenuplugin/src/%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /dolphin/dolphinservicemenuplugin/src/%{APPNAMELC}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenuplugin/src/%{APPNAMELC}.h -------------------------------------------------------------------------------- /dolphin/dolphinservicemenuplugin/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenuplugin/src/CMakeLists.txt -------------------------------------------------------------------------------- /dolphin/dolphinservicemenus/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenus/.gitignore -------------------------------------------------------------------------------- /dolphin/dolphinservicemenus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenus/Makefile -------------------------------------------------------------------------------- /dolphin/dolphinservicemenus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenus/README.md -------------------------------------------------------------------------------- /dolphin/dolphinservicemenus/SimpleMenu.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenus/SimpleMenu.desktop -------------------------------------------------------------------------------- /dolphin/dolphinservicemenus/Submenu.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenus/Submenu.desktop -------------------------------------------------------------------------------- /dolphin/dolphinservicemenus/dolphinservicemenus.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/dolphin/dolphinservicemenus/dolphinservicemenus.kdevtemplate -------------------------------------------------------------------------------- /java_templates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/.gitignore -------------------------------------------------------------------------------- /java_templates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/CMakeLists.txt -------------------------------------------------------------------------------- /java_templates/basic_javafx_template/%{APPNAME}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/basic_javafx_template/%{APPNAME}.iml -------------------------------------------------------------------------------- /java_templates/basic_javafx_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/basic_javafx_template/.gitignore -------------------------------------------------------------------------------- /java_templates/basic_javafx_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/basic_javafx_template/Makefile -------------------------------------------------------------------------------- /java_templates/basic_javafx_template/basic_javafx_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/basic_javafx_template/basic_javafx_template.kdevtemplate -------------------------------------------------------------------------------- /java_templates/basic_javafx_template/src/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/basic_javafx_template/src/main/Main.java -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/%{APPNAMELC}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/%{APPNAMELC}.iml -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/.gitignore -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/Makefile -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/README -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/java.png -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/java_apache_commons_cli_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/java_apache_commons_cli_template.kdevtemplate -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/pkg2appimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/pkg2appimage -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/pom.xml -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/recipies/%{APPNAMELC}-java11openjdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/recipies/%{APPNAMELC}-java11openjdk.yml -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/recipies/%{APPNAMELC}-java11openjdkmodular.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/recipies/%{APPNAMELC}-java11openjdkmodular.yml -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/src/deb/control/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/src/deb/control/control -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/src/deb/install/%{APPNAMELC}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/src/deb/install/%{APPNAMELC} -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/src/deb/install/%{APPNAMELC}_rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/src/deb/install/%{APPNAMELC}_rpm -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/src/main/java/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/src/main/java/main/Main.java -------------------------------------------------------------------------------- /java_templates/java_apache_commons_cli_template/src/main/java/main/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_apache_commons_cli_template/src/main/java/main/Utils.java -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/%{APPNAMELC}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/%{APPNAMELC}.iml -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/.gitignore -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/Makefile -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/README -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/java.png -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/java_argparse4j_cli_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/java_argparse4j_cli_template.kdevtemplate -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/pkg2appimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/pkg2appimage -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/pom.xml -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/recipies/%{APPNAMELC}-java11openjdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/recipies/%{APPNAMELC}-java11openjdk.yml -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/recipies/%{APPNAMELC}-java11openjdkmodular.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/recipies/%{APPNAMELC}-java11openjdkmodular.yml -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/src/deb/control/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/src/deb/control/control -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/src/deb/install/%{APPNAMELC}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/src/deb/install/%{APPNAMELC} -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/src/deb/install/%{APPNAMELC}_rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/src/deb/install/%{APPNAMELC}_rpm -------------------------------------------------------------------------------- /java_templates/java_argparse4j_cli_template/src/main/java/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_argparse4j_cli_template/src/main/java/main/Main.java -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/%{APPNAMELC}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/%{APPNAMELC}.iml -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/.gitignore -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/Makefile -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/README -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/java.png -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/java_jcommander_cli_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/java_jcommander_cli_template.kdevtemplate -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/pkg2appimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/pkg2appimage -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/pom.xml -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/recipies/%{APPNAMELC}-java11openjdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/recipies/%{APPNAMELC}-java11openjdk.yml -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/recipies/%{APPNAMELC}-java11openjdkmodular.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/recipies/%{APPNAMELC}-java11openjdkmodular.yml -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/src/deb/control/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/src/deb/control/control -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/src/deb/install/%{APPNAMELC}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/src/deb/install/%{APPNAMELC} -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/src/deb/install/%{APPNAMELC}_rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/src/deb/install/%{APPNAMELC}_rpm -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/src/main/java/main/Args.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/src/main/java/main/Args.java -------------------------------------------------------------------------------- /java_templates/java_jcommander_cli_template/src/main/java/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_jcommander_cli_template/src/main/java/main/Main.java -------------------------------------------------------------------------------- /java_templates/java_junit5_file_template/java_junit5_file_template.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_junit5_file_template/java_junit5_file_template.desktop -------------------------------------------------------------------------------- /java_templates/java_junit5_file_template/java_junit5_file_template.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_junit5_file_template/java_junit5_file_template.java -------------------------------------------------------------------------------- /java_templates/java_junit5_file_template/options.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_junit5_file_template/options.kcfg -------------------------------------------------------------------------------- /java_templates/java_maven_basic_setup/%{APPNAMELC}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_maven_basic_setup/%{APPNAMELC}.iml -------------------------------------------------------------------------------- /java_templates/java_maven_basic_setup/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_maven_basic_setup/.gitignore -------------------------------------------------------------------------------- /java_templates/java_maven_basic_setup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_maven_basic_setup/Makefile -------------------------------------------------------------------------------- /java_templates/java_maven_basic_setup/java_maven_basic_setup.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_maven_basic_setup/java_maven_basic_setup.kdevtemplate -------------------------------------------------------------------------------- /java_templates/java_maven_basic_setup/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_maven_basic_setup/pom.xml -------------------------------------------------------------------------------- /java_templates/java_maven_basic_setup/src/main/java/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_maven_basic_setup/src/main/java/main/Main.java -------------------------------------------------------------------------------- /java_templates/java_maven_basic_setup/src/test/java/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_maven_basic_setup/src/test/java/MainTest.java -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/%{APPNAMELC}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/%{APPNAMELC}.iml -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/.gitignore -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/Makefile -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/README -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/java.png -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/java_picocli_cli_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/java_picocli_cli_template.kdevtemplate -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/pkg2appimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/pkg2appimage -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/pom.xml -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/recipies/%{APPNAMELC}-java11openjdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/recipies/%{APPNAMELC}-java11openjdk.yml -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/recipies/%{APPNAMELC}-java11openjdkmodular.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/recipies/%{APPNAMELC}-java11openjdkmodular.yml -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/src/deb/control/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/src/deb/control/control -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/src/deb/install/%{APPNAMELC}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/src/deb/install/%{APPNAMELC} -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/src/deb/install/%{APPNAMELC}_rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/src/deb/install/%{APPNAMELC}_rpm -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/src/main/java/main/Args.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/src/main/java/main/Args.java -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/src/main/java/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/src/main/java/main/Main.java -------------------------------------------------------------------------------- /java_templates/java_picocli_cli_template/src/test/java/ExampleTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/java_picocli_cli_template/src/test/java/ExampleTest.java -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/%{APPNAMELC}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_template/%{APPNAMELC}.iml -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_template/.gitignore -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_template/Makefile -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_template/README -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/javafx_fxml_maven_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_template/javafx_fxml_maven_template.kdevtemplate -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_template/pom.xml -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/src/main/java/main/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_template/src/main/java/main/Controller.java -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/src/main/java/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_template/src/main/java/main/Main.java -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/src/main/resources/main/sample.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_template/src/main/resources/main/sample.fxml -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_template/src/main/resources/translations.properties: -------------------------------------------------------------------------------- 1 | message=Hello World! -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/%{APPNAMELC}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/%{APPNAMELC}.iml -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/.gitignore -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/Makefile -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/README -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/javafx_fxml_maven_testfx_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/javafx_fxml_maven_testfx_template.kdevtemplate -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/pom.xml -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/src/main/java/main/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/src/main/java/main/Controller.java -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/src/main/java/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/src/main/java/main/Main.java -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/src/main/resources/main/sample.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/src/main/resources/main/sample.fxml -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/src/main/resources/translations.properties: -------------------------------------------------------------------------------- 1 | message=Hello World! -------------------------------------------------------------------------------- /java_templates/javafx_fxml_maven_testfx_template/src/test/java/main/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_maven_testfx_template/src/test/java/main/MainTest.java -------------------------------------------------------------------------------- /java_templates/javafx_fxml_template/%{APPNAME}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_template/%{APPNAME}.iml -------------------------------------------------------------------------------- /java_templates/javafx_fxml_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_template/.gitignore -------------------------------------------------------------------------------- /java_templates/javafx_fxml_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_template/Makefile -------------------------------------------------------------------------------- /java_templates/javafx_fxml_template/javafx_fxml_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_template/javafx_fxml_template.kdevtemplate -------------------------------------------------------------------------------- /java_templates/javafx_fxml_template/src/main/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_template/src/main/Controller.java -------------------------------------------------------------------------------- /java_templates/javafx_fxml_template/src/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_template/src/main/Main.java -------------------------------------------------------------------------------- /java_templates/javafx_fxml_template/src/main/sample.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_fxml_template/src/main/sample.fxml -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/%{APPNAMELC}.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/%{APPNAMELC}.iml -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/.gitignore -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/Makefile -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/README -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/bintray.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/bintray.sh -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/java.png -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/javafx_maven_build_scripts.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/javafx_maven_build_scripts.kdevtemplate -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/pkg2appimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/pkg2appimage -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/pom.xml -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/recipies/%{APPNAMELC}-java11openjdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/recipies/%{APPNAMELC}-java11openjdk.yml -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/recipies/%{APPNAMELC}-javafxpackager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/recipies/%{APPNAMELC}-javafxpackager.yml -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/snap/snapcraft.yaml -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/deb/control/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/deb/control/control -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC}: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC} -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC}-snap.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC}-snap.desktop -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC}_rpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC}_rpm -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC}_rpm.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/deb/install/%{APPNAMELC}_rpm.desktop -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/main/java/main/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/main/java/main/Controller.java -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/main/java/main/Launcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/main/java/main/Launcher.java -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/main/java/main/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/main/java/main/Main.java -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/main/resources/main/sample.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/main/resources/main/sample.fxml -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/main/resources/translations.properties: -------------------------------------------------------------------------------- 1 | message=Hello World! 2 | -------------------------------------------------------------------------------- /java_templates/javafx_maven_build_scripts/src/test/java/main/MainTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/java_templates/javafx_maven_build_scripts/src/test/java/main/MainTest.java -------------------------------------------------------------------------------- /kdevelop_app_template/%{APPNAMELC}/%{APPNAMELC}.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_app_template/%{APPNAMELC}/%{APPNAMELC}.kdevtemplate -------------------------------------------------------------------------------- /kdevelop_app_template/%{APPNAMELC}/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_app_template/%{APPNAMELC}/.gitignore -------------------------------------------------------------------------------- /kdevelop_app_template/%{APPNAMELC}/ExampleFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_app_template/%{APPNAMELC}/ExampleFile.txt -------------------------------------------------------------------------------- /kdevelop_app_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_app_template/.gitignore -------------------------------------------------------------------------------- /kdevelop_app_template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_app_template/CMakeLists.txt -------------------------------------------------------------------------------- /kdevelop_app_template/kdevelop_app_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_app_template/kdevelop_app_template.kdevtemplate -------------------------------------------------------------------------------- /kdevelop_app_template/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_app_template/package.sh -------------------------------------------------------------------------------- /kdevelop_file_template/%{APPNAMELC}/%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_file_template/%{APPNAMELC}/%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /kdevelop_file_template/%{APPNAMELC}/DemoFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_file_template/%{APPNAMELC}/DemoFile.txt -------------------------------------------------------------------------------- /kdevelop_file_template/%{APPNAMELC}/options.kcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_file_template/%{APPNAMELC}/options.kcfg -------------------------------------------------------------------------------- /kdevelop_file_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_file_template/.gitignore -------------------------------------------------------------------------------- /kdevelop_file_template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_file_template/CMakeLists.txt -------------------------------------------------------------------------------- /kdevelop_file_template/kdevelop_file_template_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_file_template/kdevelop_file_template_template.kdevtemplate -------------------------------------------------------------------------------- /kdevelop_file_template/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/kdevelop_file_template/package.sh -------------------------------------------------------------------------------- /krunner_dbus_templates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/CMakeLists.txt -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/.gitignore -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/CMakeLists.txt -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/.gitignore -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/CMakeLists.txt -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/LICENSE -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/README.md -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/krunner_dbus_cpp.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/krunner_dbus_cpp.kdevtemplate -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/%{APPNAMELC}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/%{APPNAMELC}.cpp -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/%{APPNAMELC}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/%{APPNAMELC}.h -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/CMakeLists.txt -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/dbus_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/dbus_utils.h -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/plasma-runner-%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/krunner_dbus_cpp/src/plasma-runner-%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_cpp/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_cpp/package.sh -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_javascript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_javascript/.gitignore -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_javascript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_javascript/README.md -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_javascript/krunner_dbus_javascript.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_javascript/krunner_dbus_javascript.kdevtemplate -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_javascript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_javascript/package.json -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_javascript/plasma-runner-%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_javascript/plasma-runner-%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_javascript/src/dbus-connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_javascript/src/dbus-connection.js -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_javascript/src/index.js: -------------------------------------------------------------------------------- 1 | require('./runner'); 2 | -------------------------------------------------------------------------------- /krunner_dbus_templates/krunner_dbus_javascript/src/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/krunner_dbus_javascript/src/runner.js -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/Runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/Runner.py -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/__main__.py -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/main.py -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/resources/%{APPNAMELC}_autostart.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/resources/%{APPNAMELC}_autostart.desktop -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/resources/plasma-runner-%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/resources/plasma-runner-%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/utilities/Action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/utilities/Action.py -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/utilities/Match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/utilities/Match.py -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/utilities/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/%{APPNAMELC}/utilities/__init__.py -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/.gitignore -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/Makefile -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/README.md -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/python_modular_runner_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/python_modular_runner_template.kdevtemplate -------------------------------------------------------------------------------- /krunner_dbus_templates/modular_krunner_python_template/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/modular_krunner_python_template/setup.py -------------------------------------------------------------------------------- /krunner_dbus_templates/simple_krunner_python_template/%{APPNAMELC}.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/simple_krunner_python_template/%{APPNAMELC}.py -------------------------------------------------------------------------------- /krunner_dbus_templates/simple_krunner_python_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/simple_krunner_python_template/.gitignore -------------------------------------------------------------------------------- /krunner_dbus_templates/simple_krunner_python_template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/simple_krunner_python_template/README.md -------------------------------------------------------------------------------- /krunner_dbus_templates/simple_krunner_python_template/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/simple_krunner_python_template/install.sh -------------------------------------------------------------------------------- /krunner_dbus_templates/simple_krunner_python_template/org.kde.%{APPNAMELC}.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/simple_krunner_python_template/org.kde.%{APPNAMELC}.service -------------------------------------------------------------------------------- /krunner_dbus_templates/simple_krunner_python_template/plasma-runner-%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/simple_krunner_python_template/plasma-runner-%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /krunner_dbus_templates/simple_krunner_python_template/simple_krunner_python_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/simple_krunner_python_template/simple_krunner_python_template.kdevtemplate -------------------------------------------------------------------------------- /krunner_dbus_templates/simple_krunner_python_template/uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/krunner_dbus_templates/simple_krunner_python_template/uninstall.sh -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/package.sh -------------------------------------------------------------------------------- /python_templates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/CMakeLists.txt -------------------------------------------------------------------------------- /python_templates/PythonArgparseProject/%{APPNAMELC}.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseProject/%{APPNAMELC}.py -------------------------------------------------------------------------------- /python_templates/PythonArgparseProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseProject/.gitignore -------------------------------------------------------------------------------- /python_templates/PythonArgparseProject/python3_argparse_cli.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseProject/python3_argparse_cli.kdevtemplate -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/__main__.py -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/main.py -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/utilities/ArgsNamespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/utilities/ArgsNamespace.py -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/utilities/CustomHelpFormatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/utilities/CustomHelpFormatter.py -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/%{APPNAMELC}/utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/.gitignore -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/Makefile -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/README -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/python3_modular_argparse_cli.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/python3_modular_argparse_cli.kdevtemplate -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/setup.py -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedModularProject/snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedModularProject/snap/snapcraft.yaml -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedProject/%{APPNAMELC}.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedProject/%{APPNAMELC}.py -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedProject/.gitignore -------------------------------------------------------------------------------- /python_templates/PythonArgparseTypedProject/python3_argparse_cli.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/python_templates/PythonArgparseTypedProject/python3_argparse_cli.kdevtemplate -------------------------------------------------------------------------------- /qt_cpp_templates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/.gitignore -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/LICENSE -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $XGETTEXT src/*.cpp -o $podir/plasma_runner_org.kde.%{APPNAMELC}.pot 3 | -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/README.md -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/install.sh -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/runner.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/runner.kdevtemplate -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/src/%{APPNAMELC}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/src/%{APPNAMELC}.cpp -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/src/%{APPNAMELC}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/src/%{APPNAMELC}.h -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/src/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/basic_runner/src/plasma-runner-%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/basic_runner/src/plasma-runner-%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/.gitignore -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/LICENSE -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $XGETTEXT src/*.cpp -o $podir/plasma_runner_org.kde.%{APPNAMELC}.pot 3 | -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/README.md -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/install.sh -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/runner.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/runner.kdevtemplate -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/src/%{APPNAMELC}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/src/%{APPNAMELC}.cpp -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/src/%{APPNAMELC}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/src/%{APPNAMELC}.h -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/src/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/krunner/extended_runner/src/plasma-runner-%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/krunner/extended_runner/src/plasma-runner-%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/.gitignore -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/LICENSE -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $XGETTEXT src/*.cpp -o $podir/plasma_runner_org.kde.%{APPNAMELC}.pot 3 | -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/README.md -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/install.sh -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/runnerwithkcmodule.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/runnerwithkcmodule.kdevtemplate -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/%{APPNAMELC}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/%{APPNAMELC}.cpp -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/%{APPNAMELC}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/%{APPNAMELC}.h -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/config/%{APPNAMELC}_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/config/%{APPNAMELC}_config.cpp -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/config/%{APPNAMELC}_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/config/%{APPNAMELC}_config.h -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/config/%{APPNAMELC}_config.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/config/%{APPNAMELC}_config.ui -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/config/plasma-runner-%{APPNAMELC}_config.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/config/plasma-runner-%{APPNAMELC}_config.desktop -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/plasma-runner-%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/extendedrunnerwithconfig/src/plasma-runner-%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/.gitignore -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/LICENSE -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/Messages.sh: -------------------------------------------------------------------------------- 1 | #! /usr/bin/env bash 2 | $XGETTEXT src/*.cpp -o $podir/plasma_runner_org.kde.%{APPNAMELC}.pot 3 | -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/README.md -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/install.sh -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/runnerwithkcmodule.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/runnerwithkcmodule.kdevtemplate -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/%{APPNAMELC}.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/%{APPNAMELC}.cpp -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/%{APPNAMELC}.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/%{APPNAMELC}.h -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/config/%{APPNAMELC}_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/config/%{APPNAMELC}_config.cpp -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/config/%{APPNAMELC}_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/config/%{APPNAMELC}_config.h -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/config/%{APPNAMELC}_config.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/config/%{APPNAMELC}_config.ui -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/config/plasma-runner-%{APPNAMELC}_config.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/config/plasma-runner-%{APPNAMELC}_config.desktop -------------------------------------------------------------------------------- /qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/plasma-runner-%{APPNAMELC}.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/krunner_templates/runner_kcmodule/runnerwithconfig/src/plasma-runner-%{APPNAMELC}.desktop -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/.gitignore -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/README.md -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/.gitignore -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/Makefile -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/basic_qt_cli_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/basic_qt_cli_template.kdevtemplate -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/basic_qt_cli_template/main.cpp -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/.gitignore -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/CMakeLists.txt -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/Makefile -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/Validator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/Validator.cpp -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/Validator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/Validator.h -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/main.cpp -------------------------------------------------------------------------------- /qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/validated_qt_cli_template.kdevtemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/qt_cpp_templates/qt_cli_templates/validated_qt_cli_template/validated_qt_cli_template.kdevtemplate -------------------------------------------------------------------------------- /simple_desktop_application_file/simple_desktop_application_file.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/simple_desktop_application_file/simple_desktop_application_file.desktop -------------------------------------------------------------------------------- /simple_desktop_application_file/template.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex1701c/KDevelopTemplates/HEAD/simple_desktop_application_file/template.desktop --------------------------------------------------------------------------------