~ubuntu-branches/ubuntu/precise/hime/precise

« back to all changes in this revision

Viewing changes to src/hime-message.c

  • Committer: Package Import Robot
  • Author(s): Yao Wei (魏銘廷)
  • Date: 2012-01-14 00:24:08 UTC
  • Revision ID: package-import@ubuntu.com-20120114002408-e79gagbeg1rt8npv
Tags: upstream-0.9.9
Import upstream version 0.9.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (C) 2011 Edward Der-Hua Liu, Hsin-Chu, Taiwan
 
2
 *
 
3
 * This library is free software; you can redistribute it and/or
 
4
 * modify it under the terms of the GNU Lesser General Public
 
5
 * License as published by the Free Software Foundation; either
 
6
 * version 2.1 of the License, or (at your option) any later version.
 
7
 *
 
8
 * This library is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public
 
14
 * License along with this library; if not, write to the Free Software
 
15
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
16
 */
 
17
 
 
18
#include "hime.h"
 
19
 
 
20
void print_help()
 
21
{
 
22
  p_err("usage: hime-message -icon file_name -text string -duration milli_seconds\n");
 
23
}
 
24
 
 
25
int main(int argc, char **argv)
 
26
{
 
27
  int i;
 
28
  char text[128];
 
29
  char icon[128];
 
30
  int duration = 3000;
 
31
 
 
32
  gtk_init(&argc, &argv);
 
33
 
 
34
  if (argc < 3)
 
35
    print_help();
 
36
 
 
37
  strcpy(text, "-");
 
38
  strcpy(icon, "-");
 
39
 
 
40
  for(i=1; i < argc; i+=2) {
 
41
    if (!strcmp(argv[i], "-icon")) {
 
42
      strcpy(icon, argv[i+1]);
 
43
    } else
 
44
    if (!strcmp(argv[i], "-text")) {
 
45
      strcpy(text, argv[i+1]);
 
46
    } else
 
47
    if (!strcmp(argv[i], "-duration")) {
 
48
      duration = atoi(argv[i+1]);
 
49
    } else {
 
50
      dbg("unknown opt %s", argv[i]);
 
51
    }
 
52
  }
 
53
 
 
54
  char message[512];
 
55
 
 
56
  sprintf(message, "#hime_message %s %s %d", icon, text, duration);
 
57
 
 
58
 
 
59
  gdk_init(NULL, NULL);
 
60
 
 
61
  send_hime_message(GDK_DISPLAY(), message);
 
62
 
 
63
  return 0;
 
64
}