I have a Java application that essentially functions like an instant messaging type of program. Until the recent "upgrades" to Ubuntu with the Unity interface I had a simple icon showing up in the system tray. I realise there has been a lot of discussion regarding going back to the original purpose of this tray and don't desire to discuss that here. Rather, I'm looking for a simple and concise tutorial or documentation on how to properly integrate my app into the messaging system. I want new messages to pop-up notifications, and I've been able to do that through libnotify, however I don't know how to add the app itself as an entry under the messaging menu. Any help pointing me in the right direction would be much appreciated. I need the app to continue working cross-platform.
Where can I find information on integrating Java applications into the Ubuntu application indicator menu?
833 Views Asked by Warkior At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in UBUNTU
- Git init --bare giving error fatal: Out of memory? mmap failed: No such device
- EMACS-Live + Slime error at startup
- Vagrant - Ansible error installing Apache
- Openfire Smack Connection issue
- Error in Ruby on Rails on Ubuntu 14.04
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- C++ string and char* manipulation acting weird
- Data transfer between Ubuntu/Windows to network
- How to upgrade Node js version to 0.12.4 on Ubuntu
- How do I install Intellij on Ubuntu 15.04?
- Can't run django-admin startproject mysite (ubuntu, django.core.exceptions.ImproperlyConfigured)
- How to add apt key with --recv-keys instead of --recv?
- Express - Multiparty/Formidable unable to parse files greater than 100kb on Ubuntu. Callback of Parse is not called at all
- Unable start mongoose im in ubuntu. process crashes
- Tkinter application topmost, even over fullscreen
Related Questions in INDICATOR
- SSRS Indicator that will look for both date and hour
- Opening the Indicator in Multiple Charts
- SSRS report with directional indicator - displaying multiple indicators per row
- Which android APIs should I use to create battery indicator line on status bar
- JavaFX ProgressBar resize graphic (Possible bug in JavaFX8)
- TreeView Drag or NoDrag Indicators
- nvd3 library: modify default position of LEGEND BOX THAT AUTOMATICALLY POPS UP WHEN YOU POSITION THE MOUSE IN THE CHART
- MQL4 Indicator passing signal to EA
- Keep ios6 disclosure indicator apparence in ios7
- Animate(slide-in/slide-out) the home indicator(mini-hamburger) icon
- Conversion of MetaTrader4 to NinjaTrader
- How can I detect firebase observe childAdded is stop calling when reach queryLimit?
- How to change the label of a MenuItem in a PyGTK application?
- How Do I change the indicator of a tabhost dynmaicly from an other activity
- Pine Editor combining two tradingview indicator scaling problem
Related Questions in UBUNTU-UNITY
- Gtk# in monodevelop not working anymore after upgrading to ubuntu 11.10 unity
- How to open Guake immediately without transitions in Ubuntu
- Ubuntu+Unity: text selection event
- Ubuntu Unity: Integrating with global menu bar
- can i apply gsettings without relogin?
- Where can I find information on integrating Java applications into the Ubuntu application indicator menu?
- Unity: Keep desktop file information for detached process
- Swing application won't display in unity when second monitor is on the left
- Ubuntu: Unity Nux Development
- How to get sqldeveloper icon to show in my unity bar
- How to find the factors of a 3 digit number
- jQuery hide/show with non-zero duration not working in Firefox (but works in Chrome)
- Gnome software can't uninstall any software: no packages to remove
- Ubuntu unity cannot work, reinstall didn't fix
- How to use Ubuntu Unity global menu in GTK#?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think the best way to solve this is to use the Java DBUS library ( http://dbus.freedesktop.org/doc/dbus-java/ ) and learn about the Unity appindicator DBUS API. Then, write a special component for Unity and dynamically load this component if you are running Ubuntu.