summaryrefslogtreecommitdiffstats
path: root/src/ldapchgpassdlg.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2025-10-04 14:30:54 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2025-10-17 19:10:23 -0500
commite5a1666d93c1a8ba211a83a7952ea5652dbac558 (patch)
tree097e5191f50fb4bb970e3009f58eabc1328f8503 /src/ldapchgpassdlg.cpp
parentce91d201e0f71fb43bdb4a9faea747679a0c02dd (diff)
downloadlibtdeldap-e5a1666d93c1a8ba211a83a7952ea5652dbac558.tar.gz
libtdeldap-e5a1666d93c1a8ba211a83a7952ea5652dbac558.zip
Add initial Kerberos password change support
Diffstat (limited to 'src/ldapchgpassdlg.cpp')
-rw-r--r--src/ldapchgpassdlg.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/ldapchgpassdlg.cpp b/src/ldapchgpassdlg.cpp
new file mode 100644
index 0000000..57ec412
--- /dev/null
+++ b/src/ldapchgpassdlg.cpp
@@ -0,0 +1,46 @@
+/***************************************************************************
+ * Copyright (C) 2012 by Timothy Pearson *
+ * kb9vqf@pearsoncomputing.net *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * 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., *
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
+ ***************************************************************************/
+
+#include <tqstringlist.h>
+#include <tqlabel.h>
+#include <tqmap.h>
+
+#include <tdeapplication.h>
+#include <tdesimpleconfig.h>
+#include <tdelocale.h>
+#include <kdebug.h>
+#include <tdestandarddirs.h>
+#include <kiconloader.h>
+#include <dcopclient.h>
+#include <tdeprocess.h>
+#include <kcombobox.h>
+
+#include "ldapchgpassdlg.h"
+
+LDAPChangePassword::LDAPChangePassword(TQWidget *parent, const char *name ) : LDAPChangePasswordDlg(parent,name) {
+ px_icon->setPixmap(SmallIcon("password.png"));
+ ldapAdminRealm->setEditable(true);
+}
+
+LDAPChangePassword::~LDAPChangePassword(){
+ //
+}
+
+#include "ldapchgpassdlg.moc"