KDevelop API Documentation

vcs/cvsservice/cvsform.cpp

Go to the documentation of this file.
00001 /*************************************************************************** 00002 * Copyright (C) 2003 by Mario Scalas * 00003 * mario.scalas@libero.it * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 ***************************************************************************/ 00011 00012 #include <qlineedit.h> 00013 #include <qcombobox.h> 00014 #include <qcheckbox.h> 00015 00016 #include "cvsform.h" 00017 00019 // class CvsForm 00021 00022 CvsForm::CvsForm( QWidget *parent, const char *name, WFlags f ) 00023 : CvsFormBase( parent, name, f ) 00024 { 00025 setWFlags( getWFlags() | WDestructiveClose ); 00026 } 00027 00029 00030 CvsForm::~CvsForm() 00031 { 00032 } 00033 00035 00036 QString CvsForm::module() const 00037 { 00038 return module_edit->text(); 00039 } 00040 00042 00043 QString CvsForm::vendor() const 00044 { 00045 return vendor_edit->text(); 00046 } 00047 00049 00050 QString CvsForm::message() const 00051 { 00052 return message_edit->text(); 00053 } 00054 00056 00057 QString CvsForm::release() const 00058 { 00059 return release_edit->text(); 00060 } 00061 00063 00064 QString CvsForm::location() const 00065 { 00066 return serverPathEdit->text(); 00067 } 00068 00070 00071 QString CvsForm::cvsRsh() const 00072 { 00073 return cvsRshComboBox->currentText(); 00074 } 00075 00077 00078 bool CvsForm::mustInitRoot() const 00079 { 00080 return init_check->isChecked(); 00081 } 00082 00083 #include "cvsform.moc"
KDE Logo
This file is part of the documentation for KDevelop Version 3.0.4.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Wed Oct 6 17:39:14 2004 by doxygen 1.3.7 written by Dimitri van Heesch, © 1997-2003