xca/widgets/distname.h
Christian 8283d8e7b9 replace copyright notice in source files
(copyright and licence itself remain unchanged)
fix configure to set Qt include dir
code justifying
2007-04-12 12:25:28 +02:00

36 lines
531 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef DISTNAME_H
#define DISTNAME_H
#include <qwidget.h>
#include <qgridlayout.h>
class x509name;
class QLabel;
class QComboBox;
class QLineEdit;
class myGridlayout;
class DistName : public QWidget
{
Q_OBJECT
public:
DistName(QWidget* parent);
~DistName();
void setX509name(const x509name &n);
protected:
QGridLayout* DistNameLayout;
QLineEdit *lineEdit;
void resizeEvent( QResizeEvent *e);
};
#endif