<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/4.6.4">
</HEAD>
<BODY>
On Sun, 2013-05-05 at 21:06 +0200, Marlin Cremers wrote:
<BLOCKQUOTE TYPE=CITE>
    I'm working on a Java application that needs to integrate with Ubuntu. Because there is not a nice way of integration with Unity I'm using a Python script that creates a app indicator. But I'm looking to integrate with the sync menu that came in Ubuntu 13.04. Is this possible in Python if so. How would I do that? 
</BLOCKQUOTE>
<BR>
For the Sync menu you can use <TT>libsync-menu1</TT> to access it and add items.  You might also want to grab <TT>libsync-menu-dev</TT>.  For the Python bindings we're relying on GObject Introspection for them, so you can add the library like this:<BR>
<BR>
<BLOCKQUOTE>
    <TT>from gi.repository import SyncMenu</TT><BR>
</BLOCKQUOTE>
<BR>
You might also look at the Java project to provide GObject Introspection.  I haven't used it myself, but it looks like it's likely to have most of what you'd need completed already:<BR>
<BR>
<BLOCKQUOTE>
    <A HREF="https://live.gnome.org/JGIR">https://live.gnome.org/JGIR</A><BR>
</BLOCKQUOTE>
<BR>
Ted<BR>
<BR>
</BODY>
</HTML>