本文整理汇总了C++中KLineEdit::show方法的典型用法代码示例。如果您正苦于以下问题:C++ KLineEdit::show方法的具体用法?C++ KLineEdit::show怎么用?C++ KLineEdit::show使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类KLineEdit
的用法示例。
在下文中一共展示了KLineEdit::show方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: setupNewForwardDialog
void kiptablesgenerator::setupNewForwardDialog()
{
newForwardDialog = new KDialogBase(this, 0, true, i18n("Add Forward"), KDialogBase::Ok | KDialogBase::Cancel);
QFrame *dialogArea = new QFrame(newForwardDialog);
QGridLayout *layout = new QGridLayout(dialogArea, 4, 2);
QLabel *intro = new QLabel(i18n(
"<p><i>Advanced users only</i></p>"
"<p>Here you can tell netfilter to forward connections to given ports to another address/port.</p>"
"<p>This is using netfilter's DNAT functionality - incoming redirects go in the prerouting chain,"
"outgoing redirects go in the output chain.</p>"
"<p>The destination should be of the from destination.computer.ip.address:destinationPort</p>"), dialogArea);
intro->show();
layout->addMultiCellWidget(intro, 0, 0, 0, 1);
QButtonGroup *direction = new QButtonGroup(dialogArea);
direction->hide();
QRadioButton *incoming = new QRadioButton(i18n("&Incoming"), dialogArea);
incoming->setChecked(true);
incoming->show();
layout->addWidget(incoming, 1, 0);
namedWidgets["forward_incoming"] = incoming;
direction->insert(incoming);
QRadioButton *outgoing = new QRadioButton(i18n("&Outgoing"), dialogArea);
outgoing->show();
layout->addWidget(outgoing, 1, 1);
direction->insert(outgoing);
QLabel *label = new QLabel(i18n("Port:"), dialogArea);
label->show();
layout->addWidget(label, 2, 0);
KLineEdit *port = new KLineEdit(dialogArea);
port->show();
layout->addWidget(port, 2, 1);
namedWidgets["forward_port"] = port;
label = new QLabel(i18n("Destination:"), dialogArea);
label->show();
layout->addWidget(label, 3, 0);
KLineEdit *destination = new KLineEdit(dialogArea);
destination->show();
layout->addWidget(destination, 3, 1);
namedWidgets["forward_destination"] = destination;
connect(newForwardDialog, SIGNAL(okClicked()), this, SLOT(slotAddForward()));
dialogArea->show();
newForwardDialog->setMainWidget(dialogArea);
}
示例2: setupNewHostDialog
void kiptablesgenerator::setupNewHostDialog()
{
newHostDialog = new KDialogBase(this, 0, true, i18n("Add Host"), KDialogBase::Ok | KDialogBase::Cancel);
QFrame *dialogArea = new QFrame(newHostDialog);
QGridLayout *layout = new QGridLayout(dialogArea, 5, 2);
QLabel *intro = new QLabel(i18n(
"<p>Here you can tell netfilter to allow all connections from a given host regardless of other rules, "
"or block all connections from a given host regardless of other rules.</p>"
"<p>You can specify a host either by IP address or MAC address.</p>"), dialogArea);
intro->show();
layout->addMultiCellWidget(intro, 0, 0, 0, 1);
QButtonGroup *whitelistOrBlacklist = new QButtonGroup(dialogArea);
whitelistOrBlacklist->hide();
QRadioButton *whitelist = new QRadioButton(i18n("&Allow"), dialogArea);
whitelist->setChecked(true);
whitelist->show();
layout->addWidget(whitelist, 1, 0);
namedWidgets["newHost_allow"] = whitelist;
whitelistOrBlacklist->insert(whitelist);
QRadioButton *blacklist = new QRadioButton(i18n("&Block"), dialogArea);
blacklist->setChecked(false);
blacklist->show();
layout->addWidget(blacklist, 1, 1);
whitelistOrBlacklist->insert(blacklist);
QButtonGroup *ipOrMAC = new QButtonGroup(dialogArea);
ipOrMAC->hide();
QRadioButton *useIP = new QRadioButton(i18n("&Use IP"), dialogArea);
useIP->setChecked(true);
useIP->show();
layout->addWidget(useIP, 2, 0);
namedWidgets["newHost_useIP"] = useIP;
ipOrMAC->insert(useIP);
QRadioButton *useMAC = new QRadioButton(i18n("U&se MAC"), dialogArea);
useMAC->show();
layout->addWidget(useMAC, 2, 1);
ipOrMAC->insert(useMAC);
QLabel *hostLabel = new QLabel(i18n("Host:"), dialogArea);
hostLabel->show();
layout->addMultiCellWidget(hostLabel, 3, 3, 0, 1);
KLineEdit *host = new KLineEdit(dialogArea);
host->show();
namedWidgets["newHost_address"] = host;
layout->addMultiCellWidget(host, 4, 4, 0, 1);
connect(newHostDialog, SIGNAL(okClicked()), this, SLOT(slotAddHost()));
dialogArea->show();
newHostDialog->setMainWidget(dialogArea);
}
示例3: setupNewServiceDialog
void kiptablesgenerator::setupNewServiceDialog()
{
newServiceDialog = new KDialogBase(this, 0, true, i18n("Add Service"), KDialogBase::Ok | KDialogBase::Cancel);
QFrame *dialogArea = new QFrame(newServiceDialog);
QGridLayout *layout = new QGridLayout(dialogArea, 7, 2);
QLabel *intro = new QLabel(i18n(
"<p><i>Advanced users only</i></p>"
"<p>Here you can allow or deny access to services through your firewall.<br />"
"You can specify a port range in the box using this format: <tt>fromPort:toPort</tt></p>"), dialogArea);
intro->show();
layout->addMultiCellWidget(intro, 0, 0, 0, 1);
QLabel *protocolLabel = new QLabel(i18n("&Protocol: "), dialogArea);
protocolLabel->show();
layout->addWidget(protocolLabel, 1, 0);
KComboBox *protocols = new KComboBox(dialogArea);
protocols->insertItem(i18n("TCP"));
protocols->insertItem(i18n("UDP"));
protocols->insertItem(i18n("TCP & UDP"));
protocols->insertItem(i18n("ICMP"));
protocols->setCurrentItem(2);
protocols->show();
layout->addWidget(protocols, 1, 1);
protocolLabel->setBuddy(protocols);
namedWidgets["newService_protocols"] = protocols;
connect(protocols, SIGNAL(activated(int )), this, SLOT(slotChangedProtocol(int )));
QLabel *selectByLabel = new QLabel(i18n("Select service by: "), dialogArea);
selectByLabel->show();
layout->addMultiCellWidget(selectByLabel, 2, 2, 0, 1);
QButtonGroup *optNamedOrNumbered = new QButtonGroup(dialogArea);
optNamedOrNumbered->hide();
namedWidgets["newService_namedOrNumbered"] = optNamedOrNumbered;
QRadioButton *optNamed = new QRadioButton(i18n("&Name: "), dialogArea);
optNamed->setChecked(true);
optNamed->setName("named");
optNamedOrNumbered->insert(optNamed);
optNamed->show();
layout->addWidget(optNamed, 3, 0);
namedWidgets["newService_named"] = optNamed;
KComboBox *names = new KComboBox(dialogArea);
names->show();
layout->addWidget(names, 3, 1);
namedWidgets["newService_names"] = names;
QRadioButton *optNumbered = new QRadioButton(i18n("&Port number(s): "), dialogArea);
optNumbered->setName("numbered");
optNamedOrNumbered->insert(optNumbered);
optNumbered->show();
layout->addWidget(optNumbered, 4, 0);
namedWidgets["newService_numbered"] = optNumbered;
KLineEdit *ports = new KLineEdit(dialogArea);
ports->show();
layout->addWidget(ports, 4, 1);
namedWidgets["newService_ports"] = ports;
QButtonGroup *optAllowDeny = new QButtonGroup(dialogArea);
optAllowDeny->hide();
namedWidgets["newService_allowDeny"] = optAllowDeny;
KSeparator *separator = new KSeparator(dialogArea);
separator->show();
layout->addMultiCellWidget(separator, 5, 5, 0, 1);
QRadioButton *optAllow = new QRadioButton(i18n("&Accept"), dialogArea);
optAllow->setName(i18n("Accept"));
optAllow->setChecked(true);
optAllow->show();
optAllowDeny->insert(optAllow);
layout->addWidget(optAllow, 6, 0);
QRadioButton *optDeny = new QRadioButton(i18n("&Drop"), dialogArea);
optDeny->setName(i18n("Drop"));
optDeny->show();
optAllowDeny->insert(optDeny);
layout->addWidget(optDeny, 6, 1);
dialogArea->show();
newServiceDialog->setMainWidget(dialogArea);
connect(newServiceDialog, SIGNAL(okClicked()), this, SLOT(slotAddService()));
slotChangedProtocol(2); // TCP+UDP
}