cf377eca46
This converts the GUI code to use Qt5 and Python3 The GUI is still somewhat buggy, and it can't open files yet, but seems to be mostly working, extensive testing will be needed before this can be released.
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Relational
|
|
# Copyright (C) 2011 Salvo "LtWorf" Tomaselli
|
|
#
|
|
# Relational 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
|
|
#
|
|
# Module to unify the use of both pyqt and pyside
|
|
|
|
from PyQt5 import QtCore, QtWidgets
|
|
|
|
def get_py_str(a):
|
|
'''Returns a python string out of a QString'''
|
|
return a
|
|
|
|
def set_utf8_text(component, text):
|
|
component.setText(text)
|
|
|
|
def get_filename(filename):
|
|
print (filename)
|
|
return str(filename.toUtf8())
|
|
|
|
def add_list_item(l, item):
|
|
hitem = QtWidgets.QListWidgetItem(None, 0)
|
|
hitem.setText(item)
|
|
l.addItem(hitem)
|
|
l.setCurrentItem(hitem)
|