1#ifndef TableMainWindow_h
2#define TableMainWindow_h
7#include <QListWidgetItem>
10#include "MainWindow.h"
75 QList<QListWidgetItem *> itemList()
const;
118 void addToTable(
bool setOn,
const QString &heading,
119 const QString &menuText =
"",
int insertAt = -1,
120 Qt::Orientation o = Qt::Horizontal, QString toolTip =
"");
141 void resizeColumn(
int columnIndex);
154 bool defaultChecked);
Base class for the Qisis main windows.
a subclass of the qisis mainwindow, tablemainwindow handles all of the table tasks.
bool p_trackItems
Boolean to track items.
QTableWidget * table() const
Returns the table.
void loadTable()
This method loads a text file into the table.
void showTable()
This method checks to see if the table has been created.
void addToTable(bool setOn, const QString &heading, const QString &menuText="", int insertAt=-1, Qt::Orientation o=Qt::Horizontal, QString toolTip="")
Adds a new column to the table when a new curve is added to the plot.
QPointer< QListWidget > p_listWidget
List widget.
void setCurrentRow(int row)
Sets the current row to row.
void fileLoaded()
Signal emitted when a file has loaded.
bool eventFilter(QObject *o, QEvent *e)
This event filter is installed in the constructor.
void createTable()
This creates the table main window.
QTableWidget * p_table
The table.
int p_currentIndex
Current index.
void writeSettings() const
This overriden method is called when the Tablemainwindow is closed or hidden to write the size and lo...
void hideEvent(QHideEvent *event)
int p_visibleColumns
Number of visible columns.
QWidget * p_parent
The parent widget.
void clearTable()
This method clears all items from each row and column.
bool trackListItems()
Returns whether or not we should track items.
void readColumnSettings()
This method reads the columns in the table and sets their size to the appropriate size,...
int currentRow() const
Returns the current row.
QList< int > p_endColumn
List of end columns.
int currentIndex() const
Returns the current index.
void syncColumns()
This method hides and shows the columns according to which items the user has selected to be view-abl...
void setTrackListItems(bool track=false)
If this property is true, the class will keep track of the checked/unchecked items in the dock area w...
void deleteRows()
This method is called when the user selects a row or rows uses the delete button or selects the delet...
QString p_title
The title string.
QFile p_currentFile
The current file.
QDockWidget * p_dock
The dock widget.
int p_selectedRows
Number of selected rows.
int selectedRows() const
Returns the selected rows.
void closeEvent(QCloseEvent *event)
void clearRow(int row)
This method clears the text of the given row.
void deleteColumn(int item)
This method deletes a column from the table.
void syncRows()
Use this method to sync the table with the dock widget list if the table orientation is horizontal.
int p_currentRow
Current row.
void readItemSettings(QString heading, QListWidgetItem *item, bool defaultChecked)
This method reads the 'checked' settings on the items listed in the dock area which determine which t...
TableMainWindow(QString title, QWidget *parent=0)
Constructs a new TableMainWindow object.
void saveAsTable()
This method will select a file, set it as the current file and save the table.
void saveTable()
This method allows the user to save the data from the table to the current file.
std::string p_appName
The application name.
QAction * p_save
Action to save the table to the current file.
void setCurrentIndex(int currentIndex)
Sets the current index to currentIndex.
void setStatusMessage(QString message)
sets the status message in the lower lefthand corner of the window.
QListWidget * listWidget() const
Returns the list widget.
QList< int > p_startColumn
List of start columns.
This is free and unencumbered software released into the public domain.