klayout/src/ext/ext/extNetTracerDialog.h

123 lines
3.2 KiB
C
Raw Normal View History

/*
KLayout Layout Viewer
2018-01-01 21:08:06 +01:00
Copyright (C) 2006-2018 Matthias Koefferlein
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef HDR_extNetTracerDialog
#define HDR_extNetTracerDialog
#include "ui_NetTracerDialog.h"
#include "extNetTracer.h"
#include "extNetTracerConfig.h"
#include "layBrowser.h"
#include "layPlugin.h"
#include "layViewObject.h"
#include "layMarker.h"
#include "layTechnology.h"
namespace lay
{
class FileDialog;
}
namespace ext
{
class Net;
class NetTracerDialog
: public lay::Browser,
public Ui::NetTracerDialog,
public lay::ViewService
{
Q_OBJECT
public:
NetTracerDialog (lay::PluginRoot *root, lay::LayoutView *view);
virtual ~NetTracerDialog ();
virtual bool mouse_move_event (const db::DPoint &p, unsigned int buttons, bool prio);
virtual bool mouse_click_event (const db::DPoint &p, unsigned int buttons, bool prio);
virtual void menu_activated (const std::string &symbol);
virtual lay::ViewService *view_service_interface ();
virtual void deactivated ();
virtual void activated ();
virtual bool configure (const std::string &name, const std::string &value);
protected slots:
void net_color_changed (QColor);
void trace_net_button_clicked ();
void trace_path_button_clicked ();
void delete_button_clicked ();
void clear_all_button_clicked ();
void layer_stack_clicked ();
void export_clicked ();
void export_text_clicked ();
void detailed_mode_clicked ();
void sticky_mode_clicked ();
void configure_clicked ();
void item_selection_changed ();
void item_double_clicked (QListWidgetItem *item);
void redo_trace_clicked ();
private:
std::vector <Net *> mp_nets;
std::vector <lay::ShapeMarker *> mp_markers;
unsigned int m_cv_index;
int m_net_index;
nt_window_type m_window;
double m_window_dim;
unsigned int m_max_marker_count;
QColor m_marker_color;
int m_marker_line_width;
int m_marker_vertex_size;
int m_marker_halo;
int m_marker_dither_pattern;
int m_marker_intensity;
bool m_auto_color_enabled;
lay::ColorPalette m_auto_colors;
int m_auto_color_index;
db::DPoint m_mouse_first_point;
int m_mouse_state;
std::string m_export_cell_name;
lay::FileDialog *mp_export_file_dialog;
std::string m_export_file_name;
void update_highlights ();
void adjust_view ();
void clear_markers ();
void clear_nets ();
void update_list ();
void update_info ();
void layer_list_changed (int index);
void release_mouse ();
Net *do_trace (const db::DBox &start_search_box, const db::DBox &stop_search_box, bool trace_path);
};
}
#endif