openlp/openlp/plugins/songs/forms/topicsform.py
2009-01-01 10:03:09 +00:00

43 lines
908 B
Python

# -*- coding: utf-8 -*-
"""
Module implementing TopicsForm.
"""
from openlp.core.resources import *
from PyQt4 import QtGui, QtCore
from PyQt4.QtGui import QDialog
from PyQt4.QtCore import pyqtSignature
from topicsdialog import Ui_TopicsDialog
class TopicsForm(QDialog, Ui_TopicsDialog):
"""
Class documentation goes here.
"""
def __init__(self, songmanager, parent = None):
"""
Constructor
"""
QDialog.__init__(self, parent)
self.setupUi(self)
self.songmanager = songmanager
def load_form(self):
A = 1
@pyqtSignature("")
def on_DeleteButton_clicked(self):
"""
Slot documentation goes here.
"""
print "db clicked"
@pyqtSignature("")
def on_AddUpdateButton_clicked(self):
"""
Slot documentation goes here.
"""
print "au clicked"