1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
using System;
namespace Tomboy
{
public interface INativeApplication
{
void Initialize (string locale_dir,
string display_name,
string process_name,
string [] args);
void RegisterSessionManagerRestart (string executable_path,
string[] args,
string[] environment);
void RegisterSignalHandlers ();
event EventHandler ExitingEvent;
void Exit (int exitcode);
void StartMainLoop ();
string PreOneDotZeroNoteDirectory { get; }
string CacheDirectory { get; }
string ConfigurationDirectory { get; }
string DataDirectory { get; }
string LogDirectory { get; }
void OpenUrl (string url, Gdk.Screen screen);
void DisplayHelp (string help_uri, Gdk.Screen screen);
}
}
|