[FIX] creation of action ir_values
[odoo/odoo.git] / openerp / pychart / x11canvas.py
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2000-2005 by Yasushi Saito (yasushi.saito@gmail.com)
4
5 # Jockey is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by the
7 # Free Software Foundation; either version 2, or (at your option) any
8 # later version.
9 #
10 # Jockey is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
13 # for more details.
14 #
15 import os
16 import gs_frontend
17 import theme
18 import sys
19
20 class T(gs_frontend.T):
21     def close(self):
22         gs_frontend.T.close(self)
23         self.start_gs("-sDEVICE=x11")
24         sys.stdin.readline()
25         self.close_gs()
26