2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
KLayout Layout Viewer
|
2017-02-12 15:28:14 +01:00
|
|
|
Copyright (C) 2006-2017 Matthias Koefferlein
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
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_layCellSelectionForm
|
|
|
|
|
#define HDR_layCellSelectionForm
|
|
|
|
|
|
2017-03-05 00:57:42 +01:00
|
|
|
#include <QAction>
|
|
|
|
|
|
2017-02-12 13:21:08 +01:00
|
|
|
#include "ui_CellSelectionForm.h"
|
|
|
|
|
#include "ui_LibraryCellSelectionForm.h"
|
|
|
|
|
#include "layCellView.h"
|
|
|
|
|
#include "tlDeferredExecution.h"
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
namespace lay
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
class CellView;
|
|
|
|
|
class LayoutView;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief A form to select a cell and a cell view index
|
|
|
|
|
*/
|
|
|
|
|
class LAYBASIC_PUBLIC CellSelectionForm
|
|
|
|
|
: public QDialog, private Ui::CellSelectionForm
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
CellSelectionForm (QWidget *parent, lay::LayoutView *view, const char *name, bool simple_mode = false);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Obtain the selected cellview's index (with changes)
|
|
|
|
|
*/
|
|
|
|
|
int selected_cellview_index () const;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get the selected cellview's state
|
|
|
|
|
*/
|
|
|
|
|
const lay::CellView &selected_cellview () const;
|
|
|
|
|
|
|
|
|
|
public slots:
|
2017-03-05 00:57:42 +01:00
|
|
|
void view_changed(int);
|
|
|
|
|
void cell_changed(const QModelIndex ¤t, const QModelIndex &);
|
|
|
|
|
void child_changed(const QModelIndex ¤t);
|
|
|
|
|
void parent_changed(const QModelIndex ¤t);
|
|
|
|
|
void name_changed();
|
|
|
|
|
void set_parent();
|
|
|
|
|
void set_child();
|
|
|
|
|
void hide_cell();
|
|
|
|
|
void show_cell();
|
|
|
|
|
void apply_clicked();
|
|
|
|
|
void find_next_clicked();
|
|
|
|
|
void find_prev_clicked();
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
lay::LayoutView *mp_view;
|
|
|
|
|
std::vector <lay::CellView> m_cellviews;
|
|
|
|
|
int m_current_cv;
|
|
|
|
|
bool m_name_cb_enabled;
|
|
|
|
|
bool m_cells_cb_enabled;
|
|
|
|
|
bool m_children_cb_enabled;
|
|
|
|
|
bool m_parents_cb_enabled;
|
|
|
|
|
tl::DeferredMethod<CellSelectionForm> m_update_all_dm;
|
|
|
|
|
bool m_simple_mode;
|
2017-03-05 00:57:42 +01:00
|
|
|
QAction *mp_use_regular_expressions;
|
|
|
|
|
QAction *mp_case_sensitive;
|
2017-02-12 13:21:08 +01:00
|
|
|
|
|
|
|
|
void update_cell_list ();
|
|
|
|
|
void update_parents_list ();
|
|
|
|
|
void update_children_list ();
|
|
|
|
|
void update_all ();
|
|
|
|
|
void select_entry (lay::CellView::cell_index_type n);
|
|
|
|
|
void commit_cv ();
|
2017-03-05 00:57:42 +01:00
|
|
|
void store_config ();
|
2017-02-12 13:21:08 +01:00
|
|
|
void accept ();
|
2017-03-05 00:57:42 +01:00
|
|
|
void reject ();
|
2017-02-12 13:21:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief A form to select a cell from a library
|
|
|
|
|
*/
|
|
|
|
|
class LAYBASIC_PUBLIC LibraryCellSelectionForm
|
|
|
|
|
: public QDialog, private Ui::LibraryCellSelectionForm
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
/**
|
|
|
|
|
* @brief Create a selection form for cells from the given layout
|
|
|
|
|
*
|
|
|
|
|
* This version does not provide library selection. \get_current_library will
|
|
|
|
|
* always return 0.
|
|
|
|
|
* If all_cells is true, all cells (not only top cells and basic cells) are shown.
|
|
|
|
|
*/
|
|
|
|
|
LibraryCellSelectionForm (QWidget *parent, db::Layout *layout, const char *name, bool all_cells = false);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Create a selection form for cells plus the library
|
|
|
|
|
*
|
|
|
|
|
* If all_cells is true, all cells (not only top cells and basic cells) are shown.
|
|
|
|
|
*/
|
|
|
|
|
LibraryCellSelectionForm (QWidget *parent, const char *name, bool all_cells = false);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Set the selected library
|
|
|
|
|
*/
|
|
|
|
|
void set_current_library (db::Library *lib);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get the selected library
|
|
|
|
|
*/
|
|
|
|
|
db::Library *get_current_library () const
|
|
|
|
|
{
|
|
|
|
|
return mp_lib;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Set the selected cell's index
|
|
|
|
|
*/
|
|
|
|
|
void set_selected_cell_index (db::cell_index_type ci);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Select the PCell with the given ID (when BasicCells is selected in the flags)
|
|
|
|
|
*/
|
|
|
|
|
void set_selected_pcell_id (db::pcell_id_type pci);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Obtain the selected cell's index
|
|
|
|
|
*/
|
|
|
|
|
db::cell_index_type selected_cell_index () const
|
|
|
|
|
{
|
|
|
|
|
return m_cell_index;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Returns true, if the selected cell is a pcell
|
|
|
|
|
*/
|
|
|
|
|
bool selected_cell_is_pcell () const
|
|
|
|
|
{
|
|
|
|
|
return m_is_pcell;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief Get the PCell ID of the selected cell (if it's a PCell)
|
|
|
|
|
*/
|
|
|
|
|
db::pcell_id_type selected_pcell_id () const
|
|
|
|
|
{
|
|
|
|
|
return m_pcell_id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void name_changed(const QString &);
|
|
|
|
|
void cell_changed(const QModelIndex ¤t, const QModelIndex &);
|
|
|
|
|
void find_next_clicked();
|
|
|
|
|
void lib_changed ();
|
|
|
|
|
void show_all_changed ();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
db::Library *mp_lib;
|
|
|
|
|
const db::Layout *mp_layout;
|
|
|
|
|
bool m_name_cb_enabled;
|
|
|
|
|
bool m_cells_cb_enabled;
|
|
|
|
|
db::cell_index_type m_cell_index;
|
|
|
|
|
db::pcell_id_type m_pcell_id;
|
|
|
|
|
bool m_is_pcell;
|
|
|
|
|
bool m_all_cells;
|
|
|
|
|
|
|
|
|
|
void select_entry (db::cell_index_type n);
|
|
|
|
|
void select_pcell_entry (db::pcell_id_type n);
|
|
|
|
|
void update_cell_list ();
|
|
|
|
|
void accept ();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|