mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-11-01 06:33:56 +01:00 
			
		
		
		
	* Added an 'RDDialog' class. * Added an 'RDWidget' class. * Refactored rdadmin(1) to use 'RDDialog' and 'RDWidget' base classes.
		
			
				
	
	
		
			71 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // view_node_info.h
 | |
| //
 | |
| // Edit a Rivendell Livewire Node
 | |
| //
 | |
| //   (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
 | |
| //
 | |
| //   This program is free software; you can redistribute it and/or modify
 | |
| //   it under the terms of the GNU General Public License version 2 as
 | |
| //   published by the Free Software Foundation.
 | |
| //
 | |
| //   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, write to the Free Software
 | |
| //   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 | |
| //
 | |
| 
 | |
| #ifndef VIEW_NODE_INFO_H
 | |
| #define VIEW_NODE_INFO_H
 | |
| 
 | |
| #include <qlineedit.h>
 | |
| 
 | |
| #include <rddialog.h>
 | |
| #include <rdlistview.h>
 | |
| #include <rdlistviewitem.h>
 | |
| #include <rdlivewire.h>
 | |
| 
 | |
| class ViewNodeInfo : public RDDialog
 | |
| {
 | |
|  Q_OBJECT
 | |
|  public:
 | |
|   ViewNodeInfo(QWidget *parent=0);
 | |
|   QSize sizeHint() const;
 | |
|   QSizePolicy sizePolicy() const;
 | |
| 
 | |
|  public slots:
 | |
|   void exec(const QString &hostname,Q_UINT16 port,const QString &passwd,
 | |
| 	    unsigned base_output);
 | |
| 
 | |
|  private slots:
 | |
|   void connectedData(unsigned id);
 | |
|   void sourceChangedData(unsigned id,RDLiveWireSource *src);
 | |
|   void destinationChangedData(unsigned id,RDLiveWireDestination *dst);
 | |
|   void closeData();
 | |
| 
 | |
|  private:
 | |
|   void WriteSourceItem(RDLiveWireSource *src,RDListViewItem *item);
 | |
|   void WriteDestinationItem(RDLiveWireDestination *dst,RDListViewItem *item);
 | |
|   RDLiveWire *view_livewire;
 | |
|   QLineEdit *view_hostname_edit;
 | |
|   QLineEdit *view_tcpport_edit;
 | |
|   QLineEdit *view_protocol_edit;
 | |
|   QLineEdit *view_system_edit;
 | |
|   QLineEdit *view_type_edit;
 | |
|   QLineEdit *view_sources_edit;
 | |
|   QLineEdit *view_destinations_edit;
 | |
|   QLineEdit *view_channels_edit;
 | |
|   QLineEdit *view_gpis_edit;
 | |
|   QLineEdit *view_gpos_edit;
 | |
|   RDListView *view_sources_view;
 | |
|   RDListView *view_destinations_view;
 | |
|   unsigned view_base_output;
 | |
| };
 | |
| 
 | |
| 
 | |
| #endif  // VIEW_NODE_INFO
 | |
| 
 |