File: synaptic.cc

package info (click to toggle)
synaptic 0.81.2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 20,184 kB
  • ctags: 2,538
  • sloc: cpp: 24,326; xml: 7,938; ansic: 2,084; makefile: 578; sh: 438; sed: 93; python: 82
file content (125 lines) | stat: -rw-r--r-- 2,636 bytes parent folder | download | duplicates (8)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/* synaptic.cc - main()
 * 
 * Copyright (c) 2000-2003 Conectiva S/A 
 * 
 * Author: Alfredo K. Kojima <kojima@conectiva.com.br>
 *
 * This program is free software; you can redistribute it and/or 
 * modify it under the terms of the GNU General Public License as 
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */

#include <iostream>

#include "config.h"

#include "i18n.h"

#include "rconfiguration.h"
#include "rpackagelister.h"

#include <apt-pkg/configuration.h>
#include <apt-pkg/error.h>


#include <unistd.h>

#include "rwmainwindow.h"

#include <WINGs/WINGs.h>


static Display *dpy;
static WMScreen *scr;



void RWFlushInterface()
{
    XSync(dpy, False);
    while (XPending(dpy)) {
	XEvent ev;
	
	WMNextEvent(dpy, &ev);
	WMHandleEvent(&ev);
    }
}


int main(int argc, char **argv)
{    
    setlocale(LC_ALL, "");
    
//    bindtextdomain(PACKAGE, "/usr/local/share/locale");
    textdomain(PACKAGE);
    
    WMInitializeApplication("synaptic", &argc, argv);
    
    dpy = XOpenDisplay("");
    if (!dpy) {
	cout << argv[0] << _(":could not open display") <<endl;
	exit(1);
    }
    
    //XSynchronize(dpy, 1);
    scr = WMCreateScreen(dpy, DefaultScreen(dpy));

    if (getuid() != 0) {
	WMRunAlertPanel(scr, NULL, _("Error"),
			_("You must run this program as the root user."),
			_("OK"), NULL, NULL);
	exit(1);
    }   
 
 
    if (!RInitConfiguration("synaptic.conf")) {
	_error->DumpErrors();
	exit(1);
    }

   
    
    RPackageLister *packageLister = new RPackageLister();


    RWMainWindow *mainWindow = new RWMainWindow(scr, packageLister);

#ifndef HAVE_RPM
    mainWindow->setTitle(PACKAGE" for Debian "VERSION);
#else
    mainWindow->setTitle(_config->Find("Synaptic::MyName", PACKAGE)+" "VERSION);
#endif

    mainWindow->show();

    RWFlushInterface();
    
    mainWindow->setInterfaceLocked(true);
    
    if (!packageLister->openCache(false)) {
	mainWindow->showErrors();
	exit(1);
    }
    
    mainWindow->restoreState();

    mainWindow->setInterfaceLocked(false);

    mainWindow->showErrors();
    
    WMScreenMainLoop(scr);
    
    return 0;
}