After some blog posts on my old blog about KDE programming with Ruby
I decided to bring the content a little bit more to the people. Here I am.
Two days before yesterday I got a mail concerning a problem related to creating
plasmoids with Ruby. I never had the wish to create my own plasmoid. I thought
it would be difficult, but while getting a closer look, I’ve noticed how easy it
is - in the case of using Ruby.
Simple Ruby Plasmoid
This example is a modified version from the one in the KDE techbase wiki.
The plasmoid sends the content of a QLineEdit to the clipboard when pressing the
QPushButton or pressing the enter key and clears the QLineEdit afterwards.
Test It
If you want to try it yourself, you just have to extract
simple_ruby_plasmoid_clipboard.tar.gz, change the directory to
ruby-test-applet and start the plasmoid in a special viewer with
plasmoidviewer.
You have to install the Ruby KDE bindings package (on opensuse it is called
ruby-kde4), but on a lot of KDE4 systems this should be installed already.
Understand It
First you need the right directory tree for your plasmoid. It should be look
like this:
Member variables begins with an @ sign. There are different aliases for KDE and
Qt methods. You can omit brackets in a lot of cases. You don’t need any header
files. You don’t need to compile.
require'plasma_applet'moduleRubyTestAppletclassMain<PlasmaScripting::Appletslots:addTextdefinitset_minimum_size150,150@layout=Qt::GraphicsLinearLayout.newQt::Vertical,selfself.layout=@layout@label=Plasma::Label.newself@label.text='This plasmoid will copy the text you enter below to the clipboard.'@layout.add_item@label@line_edit=Plasma::LineEdit.newselfbegin@line_edit.clear_button_shown=true# not supported in early plasma versionsrescuenil# but that doesn't matterend@layout.add_item@line_edit@button=Plasma::PushButton.newself@button.text='Copy to clipboard'@layout.add_item@buttonQt::Object.connect(@button,SIGNAL(:clicked),self,SLOT(:addText))Qt::Object.connect(@line_edit,SIGNAL(:returnPressed),self,SLOT(:addText))enddefaddTextQt::Application.clipboard.text=@line_edit.text@line_edit.text=""endendend# kate: remove_trailing_space on; replace-trailing-space-save on; indent-width 2; indent-mode ruby;
The second file you need is the metadata.desktop containing all the meta data.
[Desktop Entry]Name=Simple Ruby appletComment=This is a simple applet written in RubyIcon=chronometerType=ServiceServiceTypes=Plasma/AppletX-Plasma-API=ruby-scriptX-Plasma-MainScript=code/main.rbX-KDE-PluginInfo-Author=MeX-KDE-PluginInfo-Email=me@example.comX-KDE-PluginInfo-Name=ruby-testX-KDE-PluginInfo-Version=0.1X-KDE-PluginInfo-Website=http://plasma.kde.org/X-KDE-PluginInfo-Category=ExamplesX-KDE-PluginInfo-Depends=X-KDE-PluginInfo-License=GPLX-KDE-PluginInfo-EnabledByDefault=true
metadata.desktop
What do you think? So easy, isn’t it? If you have ever played a little
bit with Ruby and Qt or KDE you should know enough to create your own plasmoid
within a quarter of an hour!
After using the static website generator webgen I started to appreciate the idea not
to depend on special hosts with php, mysql and so on enabled. You can put all files on a CD
and it will works nevertheless. Like in the good old days, when there was only the notepad and
the Netscape Navigator.
My last blog was powered by Movable Type. A really good, full-featured engine, but editing in
the ajax backend was damn slow, because I hosted Movable Type myself via a dynamic dns service. And
at home the provided upload rate is not good enough to host a page serious. I don’t want to pay for
websites. There is so much static webspace in the www. So I switched over to the ruby1 driven Jekyll
and got in addtion the hosting for free on http://github.com.
While editing the files I found some usefull tricks you, you maybe googled for.
CSS selector for elements without class attribute
I wanted a template which allows to use nice CSS formatted <code> and <pre> tags for source code,
but on the other hand I didn’t want to change the style of included code snippets from http://pastie.org or
http://refactormycode.com.
So I found out how to change only these html tags in the source code, which doesn’t have an class attribute, because
that is exactly the difference between these pastie-snippets and my own pre-elements.
First I define some basic font styles for all kind of code. After that I define styles for the code, which isn’t
in a pre-element and at last follows the style for the pygments-generated in-built code.
Integrating other static pages
As BSc physics student I got a userpage on the IT system of the physics institute, where I store some files.
Furthermore I have an account at DESY, from where I also get a userpage. So I thought it would
be nice to integrate both pages.
In the end I got it by defining a special header and footer in the .htaccess file for the Apache auto-generated directory index.
To start the “challenge” it is necessary to login with your own SSL certificate from CAcert. I only used gpg the last years, so I had have to create a new one and configure KDE to use it.
For testing some parts of the korundum bindings, that allow the usage of KDE in Ruby, i wrote a small and lightweight application with only the necessary parts.
Maybe you can take it also to do some testings or just as a little example.
With its 12 lines (17 lines minus 3 empty lines minus Shebang line and $KCode line, that are not really required) of code it is perhaps the smalles KDE application you will find.
Of course, every Qt app would be a few lines smaller, because you dont need the KAbout object.
#!/usr/bin/env ruby$KCODE='u'require'korundum4'about=KDE::AboutData.new("ktest","",KDE.ki18n("KTest"),"0.1")KDE::CmdLineArgs.init(ARGV,about)a=KDE::Application.neww=KDE::PushButton.new("Click me to quit")doconnect(SIGNAL:clicked)doputs"Do something else"KDE::Application.instance.quitendendw.showa.exec
Starting using the Qt-Toolkit (or the extension with KDE classes) is a little difficult. Especially if you never used really the toolkit with C++. So you have to learn translating the C++ API reference into ruby.
But when you got it, the usage is pretty cool. In the following code listing you can find the code for a full-featured kmainwindow.
#!/usr/bin/env ruby# file: kmainwindow.rb$KCODE='u'require'korundum4'# kd4 bindingsclassCustomWidget<KDE::MainWindowdefinitializesuperresize(520,535)# Prepare the Actions@actionQuit=KDE::Action.new(self){setIconKDE::Icon.new"application-exit"}connect(@actionQuit,SIGNAL(:triggered),SLOT(:close))# Prepare the Menu@menuBar=menuBar@menuFile=Qt::Menu.new@menuBar@menuFile.addAction@actionQuit@menuBar.addAction@menuFile.menuAction@helpMenu=helpMenu@menuBar.addAction@helpMenu.menuActionsetMenuBar(@menuBar)# Prepare Statusbar@statusBar=statusBarsetStatusBar@statusBar# Prepare Toolbar@toolBar=toolBar@toolBar.addAction@actionQuitaddToolBar(Qt::TopToolBarArea,@toolBar)# Prepare Central Widget@centralwidget=KDE::TextEdit.newselfsetCentralWidget@centralwidgetretranslateUienddefretranslateUi@menuFile.title=i18n"File"setWindowTitlei18n"MainWindow"# @statusBar.showMessage i18n "Loading"@actionQuit.text=i18n"Quit"@actionQuit.shortcut=KDE::Shortcut.newi18nc("Quit","Ctrl+Q")endendabout=KDE::AboutData.new("app",# internal application name# language catlog name for i10n (konqueror's catalog for the beginning is better than no catalog)"konqueror",KDE.ki18n("KApp"),# application name in the about menu and everywhere else"0.1",# application versionKDE::ki18n("A Tool to easily create HTML formatted Code"),# short descriptionKDE::AboutData::License_GPL_V3,# licenseKDE::ki18n("(c) 1999-2000, Name"),# copyright info# text in the about box - maybe with \n line breaksKDE::ki18n("just some text in the about box"),# project homepage and eMail adress for bug reports - attention: homepage changes standard dbus/dcop name!"http://homepage.de","bugs@homepage.de")about.setProgramIconName"plasma"# use the plasma-icon instead of question markKDE::CmdLineArgs.init(ARGV,about)a=KDE::Application.neww=CustomWidget.newa.topWidget=ww.showa.exec