summaryrefslogtreecommitdiff
path: root/src/GudhUI/gui/Menu_k_nearest_neighbors.h
blob: d72b007426280f6c3d90d78c086d24e9a6ce85c8 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 * Menu_k_nearest_neighbors.h
 *
 *  Created on: Sep 11, 2014
 *      Author: dsalinas
 */

#ifndef MENU_K_NEAREST_NEIGHBORS_H_
#define MENU_K_NEAREST_NEIGHBORS_H_

#include <QMainWindow>
#include "gui/ui_KNearestNeighborsMenu.h"

class QWidget;


class Menu_k_nearest_neighbors : public QDialog,public Ui::KNearestNeighborsMenu{
	Q_OBJECT
private:
	QMainWindow* parent;

public:

	Menu_k_nearest_neighbors(QMainWindow* parent_);

	void connectActions(QMainWindow* parent);

	public slots:
	void send_compute_k_nearest_neighbors();
	void update_k(int);
	void accept();

	signals:
	void compute_k_nearest_neighbors(unsigned k);

};


#endif /* MENU_K_NEAREST_NEIGHBORS_H_ */