mirror of
				https://github.com/asterisk/asterisk.git
				synced 2025-10-31 10:47:18 +00:00 
			
		
		
		
	Version 0.1.0 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@12 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
		
							
								
								
									
										61
									
								
								pbx/pbx_kdeconsole.cc
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										61
									
								
								pbx/pbx_kdeconsole.cc
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,61 @@ | ||||
| /* | ||||
|  * Asterisk -- A telephony toolkit for Linux. | ||||
|  * | ||||
|  * KDE Console monitor -- Class implmementation | ||||
|  *  | ||||
|  * Copyright (C) 1999, Adtran Inc. and Linux Support Services, LLC | ||||
|  * | ||||
|  * Mark Spencer <markster@linux-support.net> | ||||
|  * | ||||
|  * This program is free software, distributed under the terms of | ||||
|  * the GNU General Public License | ||||
|  */ | ||||
|  | ||||
| #include "pbx_kdeconsole.moc" | ||||
|  | ||||
| KAsteriskConsole::KAsteriskConsole() : KTMainWindow() | ||||
| { | ||||
| 	QVBoxLayout *box; | ||||
| 	QFrame *f; | ||||
| 	 | ||||
| 	f = new QFrame(this); | ||||
| 	 | ||||
| 	setGeometry(100,100,600,400); | ||||
| 	/* Menus */ | ||||
| 	file = new QPopupMenu(); | ||||
| 	file->insertItem("&Exit", this, SLOT(slotExit())); | ||||
| 	 | ||||
| 	help = kapp->getHelpMenu(TRUE, "KDE Asterisk Console\nby Mark Spencer"); | ||||
| 	 | ||||
| 	setCaption("Asterisk Console"); | ||||
| 	 | ||||
| 	/* Box */ | ||||
| 	box = new QVBoxLayout(f, 20, 5); | ||||
| 	 | ||||
| 	/* Menu bar creation */ | ||||
| 	menu = new KMenuBar(this); | ||||
| 	menu->insertItem("&File", file); | ||||
| 	menu->insertItem("&Help", help); | ||||
| 	/* Verbose stuff */ | ||||
| 	verbose = new QListBox(f, "verbose"); | ||||
| 	/* Exit button */ | ||||
| 	btnExit = new QPushButton("Exit", f, "exit"); | ||||
| 	btnExit->show(); | ||||
| 	connect(btnExit,  SIGNAL(clicked()), this, SLOT(slotExit())); | ||||
| 	 | ||||
| 	box->addWidget(verbose, 1); | ||||
| 	box->addWidget(btnExit, 0); | ||||
| 	setView(f, TRUE); | ||||
| 	statusBar()->message("Ready", 2000); | ||||
| } | ||||
|  | ||||
| void KAsteriskConsole::slotExit() | ||||
| { | ||||
| 	close(); | ||||
| } | ||||
|  | ||||
| void KAsteriskConsole::closeEvent(QCloseEvent *) | ||||
| { | ||||
| 	kapp->quit(); | ||||
| } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user