Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

qstardict(1) [debian man page]

QSTARDICT(1)						      General Commands Manual						      QSTARDICT(1)

NAME
qstardict - a Qt4 dictionary DESCRIPTION
QStarDict is a StarDict clone written with Qt4. The user interface is similar to StarDict. You can start QStarDict from the menu or by run- ning the qstardict command. TRANSLATION REFORMATTING AND ABBREVIATION EXPANSION
QStarDict can reformat translations and expand dictionary abbreviations. For example this translation: 1> First _val. of _w. 2> Second _val. of _w. ... can be shown as 1. Fist value of word 2. Second value of word 3. ... But reformatting and expanding takes additional CPU time. If the translation reformatting and instant search are both turned on this can decrease QStarDict performance. DICTIONARIES
Dictionaries for StarDict plugin are in StarDict format and by default must be placed into /usr/share/stardict/dic or ~/.stardict/dic directories. A dictionary must consist of three files: - .dict[.dz] file - main dictionary file - .idx - index file - .ifo - description file These files must be placed together in one directory. PRONOUNCING PROGRAMS
QStarDict can pronounce words using external program when popup window is shown. You must set a voice program to pronounce text from stdin. By default this is festival with --tts option. D-BUS QStarDict supports D-Bus message bus. List of available methods: void org.qstardict.dbus.showPopup(QString text) void org.qstardict.dbus.showTranslation(QString text) QString org.qstardict.dbus.translate(QString text) QString org.qstardict.dbus.translateHtml(QString text) QDBusVariant org.freedesktop.DBus.Properties.Get(QString interface_name, QString property_name) void org.freedesktop.DBus.Properties.Set(QString interface_name, QString property_name, QDBusVariant value) QString org.freedesktop.DBus.Introspectable.Introspect() List of available properties: readwrite int org.qstardict.dbus.mainWindowVisible You can call these methods from your applications or by using the qdbus program. This command qdbus org.qstardict.dbus /qstardict org.qstardict.dbus.showPopup "text" will show a QStarDict popup window with a translation of the "text". If you want to show/hide QStarDict window using keyboard shortcuts you must bind the following command to a shortcut: qdbus org.qstardict.dbus /qstardict org.freedesktop.DBus.Properties.Set org.qstardict.dbus mainWindowVisible $(( ! $(qdbus org.qstardict.dbus /qstardict org.freedesktop.DBus.Properties.Get org.qstardict.dbus mainWindowVisible))) HOMEPAGE
QStarDict website <http://qstardict.ylsoftware.com> AUTHOR
QStarDict was written by Alexander Rodin <rodin.alexander@gmail.com>. This manual page was written by Alexander Rodin <rodin.alexander@gmail.com>, for the Debian project (but may be used by others). SEE ALSO
stardict(1) sdcv(1) qdbus(1) November 11, 2007 QSTARDICT(1)

Check Out this Related Man Page

dbus-cleanup-sockets(1) 					   User Commands					   dbus-cleanup-sockets(1)

NAME
dbus-cleanup-sockets - clean up leftover sockets in a directory SYNOPSIS
dbus-cleanup-sockets [--help] [--version] [directory] DESCRIPTION
The dbus-cleanup-sockets command cleans up unused D-Bus connection sockets. If given no arguments, dbus-cleanup-sockets cleans up sockets in the standard default socket directory for the per-user-login-session mes- sage bus; this is usually /tmp. Optionally, you can pass a different directory on the command line. On Linux, this program is essentially useless, because D-Bus defaults to using "abstract sockets" that exist only in memory and don't have a corresponding file in /tmp. On most other flavors of UNIX, it is possible for the socket files to leak when programs using D-Bus exit abnormally or without closing their D-Bus connections. Thus, it might be interesting to run dbus-cleanup-sockets in a cron job to clean up any leaked sockets. Or you can just ignore the leaked sockets, they are not really hurting anything, other than cluttering the /tmp directory. See http://www.freedesktop.org/software/dbus/ for more information. OPTIONS
The following options are supported: --help Show help information on standard output and exit. --version Print the version of dbus-cleanup-sockets OPERANDS
The following operands are supported: directory Clean up sockets in the specified directory rather than the default socket directory. EXIT STATUS
The following exit values are returned: 0 Application exited successfully >0 Application exited with failure FILES
The following files are used by this application: /usr/bin/dbus-cleanup-sockets Executable for dbus-cleanup-sockets /tmp Default location for D-Bus connection sockets ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWdbus | +-----------------------------+-----------------------------+ |Interface stability |Volatile | +-----------------------------+-----------------------------+ SEE ALSO
dbus-daemon(1), dbus-launch(1), dbus-monitor(1), dbus-send(1), dbus-uuidgen(1), libdbus-glib-1(3), attributes(5) NOTES
For authorship information refer to http://www.freedesktop.org/software/dbus/doc/AUTHORS. Updated by Brian Cameron, Sun Microsystems Inc., 2007. dbus-cleanup-sockets was adapted by Havoc Pennington from linc-cleanup-sockets written by Michael Meeks. Documentation updated by Brian Cameron, Sun Microsystems Inc., 2007. Please send bug reports to the D-Bus mailing list or bug tracker, see http://www.freedesktop.org/software/dbus/ SunOS 5.11 19 Nov 2007 dbus-cleanup-sockets(1)
Man Page