Starting to implement main window

This commit is contained in:
Sergio Costas 2014-07-09 21:04:10 +02:00
parent 069909c964
commit 0f197561c5
18 changed files with 2400 additions and 25 deletions

View file

@ -13,11 +13,19 @@
# 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, see <http://www.gnu.org/licenses/>.
# along with this program. If not, see <http://www.gnu.org/licenses/>
import devede.convert
import devede.main_window
from gi.repository import Gtk
# This is the first call made, where we initializate everything
def main(argv):
def main(argv,paths):
devede.convert.test()
global _
Gtk.init(argv)
ventana = devede.main_window.choose_disk(paths)
Gtk.main()