summaryrefslogtreecommitdiff
path: root/src/ui/iplookup.h
blob: 61b9343c273de22ce8f8fc31c48c2b7dc6844dfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: GPL-2.0-or-later

#ifndef __FQTERM_IPLOOKUP__
#define __FQTERM_IPLOOKUP__

#include <QDialog>
#include "ui_iplookup.h"
namespace FQTerm {

class IPLookupDialog : public QDialog {
  Q_OBJECT;
public:
  IPLookupDialog(QWidget *parent_ = 0, Qt::WindowFlags fl = 0);
  ~IPLookupDialog();

protected slots:
  void onLookup();
  void onFinished();
private:
  Ui::IPLookupDialog ui_;
};

} //namespace FQTerm

#endif //__FQTERM_IPLOOKUP__