quickhelperBA.py :  » GUI » Kodos » kodos-2.4.9 » modules » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » GUI » Kodos 
Kodos » kodos 2.4.9 » modules » quickhelperBA.py
# Form implementation generated from reading ui file '/www/kodos/modules/quickhelperBA.ui'
#
# Created: Fri Jan 11 13:40:02 2002
#      by: The Python User Interface Compiler (pyuic)
#
# WARNING! All changes made in this file will be lost!


from qt import *


class referenceBA(QWidget):
    def __init__(self,parent = None,name = None,fl = 0):
        QWidget.__init__(self,parent,name,fl)

        if name == None:
            self.setName('referenceBA')

        self.resize(535,450)
        self.setCaption(self.tr('Form2'))

        self.ListView2 = QListView(self,'ListView2')
        self.ListView2.addColumn(self.tr('Symbol'))
        self.ListView2.addColumn(self.tr('Definition'))
        item = QListViewItem(self.ListView2,None)
        item.setText(0,self.tr('.'))
        item.setText(1,self.tr('Matches any character'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('*'))
        item.setText(1,self.tr('Matches 0 or more repetition of preceeding RE'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('+'))
        item.setText(1,self.tr('Matches 1 or more repetition of preceeding RE'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('?'))
        item.setText(1,self.tr('Matches 0 or 1 repetition of preceeding RE'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('^'))
        item.setText(1,self.tr('Matches start of string'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('$'))
        item.setText(1,self.tr('Matches the end of the string'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\A'))
        item.setText(1,self.tr('Matches only at the start of the string'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\B'))
        item.setText(1,self.tr('Matches the empty string, but only when it is not at the beginning or end of a  word'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\b'))
        item.setText(1,self.tr('Matches the empty string, but only at the beginning or end of a word'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\d'))
        item.setText(1,self.tr('Matches any decimal digit'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\D'))
        item.setText(1,self.tr('Matches any non-digit character'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\z'))
        item.setText(1,self.tr('Matches only at the end of the string'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\W'))
        item.setText(1,self.tr('Matches any non-word'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\w'))
        item.setText(1,self.tr('Matches any word'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\S'))
        item.setText(1,self.tr('Matches any non-whitespace character'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\s'))
        item.setText(1,self.tr('Matches any whitespace character'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('\\\\'))
        item.setText(1,self.tr('Matches a literal backslash'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('??'))
        item.setText(1,self.tr('Non-greedy ?'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('*?'))
        item.setText(1,self.tr('Non-greedy *'))

        item = QListViewItem(self.ListView2,item)
        item.setText(0,self.tr('+?'))
        item.setText(1,self.tr('Non-greedy +'))

        self.ListView2.setGeometry(QRect(5,30,525,410))
        self.ListView2.setAllColumnsShowFocus(1)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.