mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-20 03:46:11 +00:00
AStyle format
This commit is contained in:
parent
ad0de05654
commit
312cc9b912
@ -20,7 +20,7 @@ namespace qhelpers
|
||||
void appendRow(QTreeWidget *tw, const QString &str, const QString &str2 = QString(),
|
||||
const QString &str3 = QString(), const QString &str4 = QString(), const QString &str5 = QString());
|
||||
|
||||
void setVerticalScrollMode(QTreeWidget* tw);
|
||||
void setVerticalScrollMode(QTreeWidget *tw);
|
||||
}
|
||||
|
||||
#endif // HELPERS_H
|
||||
|
@ -723,7 +723,8 @@ void MainWindow::seek(const QString &offset, const QString &name)
|
||||
{
|
||||
if (offset.length() == 0)
|
||||
return;
|
||||
if (name != NULL) {
|
||||
if (name != NULL)
|
||||
{
|
||||
this->memoryDock->setWindowTitle(name);
|
||||
this->current_address = name;
|
||||
}
|
||||
@ -846,7 +847,7 @@ void MainWindow::hideAllDocks()
|
||||
|
||||
void MainWindow::showDefaultDocks()
|
||||
{
|
||||
const QList<DockWidget*> defaultDocks = { sectionsDock,
|
||||
const QList<DockWidget *> defaultDocks = { sectionsDock,
|
||||
functionsDock,
|
||||
memoryDock,
|
||||
commentsDock,
|
||||
@ -854,7 +855,8 @@ void MainWindow::showDefaultDocks()
|
||||
importsDock,
|
||||
symbolsDock,
|
||||
notepadDock,
|
||||
dashboardDock};
|
||||
dashboardDock
|
||||
};
|
||||
|
||||
for (auto w : dockWidgets)
|
||||
{
|
||||
@ -909,7 +911,7 @@ void MainWindow::add_debug_output(QString msg)
|
||||
|
||||
void MainWindow::on_actionNew_triggered()
|
||||
{
|
||||
if(close())
|
||||
if (close())
|
||||
on_actionLoad_triggered();
|
||||
}
|
||||
|
||||
@ -931,7 +933,7 @@ void MainWindow::on_actionRun_Script_triggered()
|
||||
|
||||
QString fileName;
|
||||
fileName = dialog.getOpenFileName(this, "Select radare2 script");
|
||||
if(!fileName.length()) //cancel was pressed
|
||||
if (!fileName.length()) //cancel was pressed
|
||||
return;
|
||||
|
||||
qDebug() << "Meow: " + fileName;
|
||||
@ -1035,7 +1037,8 @@ void MainWindow::refreshVisibleDockWidgets()
|
||||
{
|
||||
// There seems to be no convenience function to check if a QDockWidget
|
||||
// is really visible or hidden in a tabbed dock. So:
|
||||
auto isDockVisible = [](const QDockWidget * const pWidget) {
|
||||
auto isDockVisible = [](const QDockWidget * const pWidget)
|
||||
{
|
||||
return pWidget != nullptr && !pWidget->visibleRegion().isEmpty();
|
||||
};
|
||||
|
||||
|
@ -271,7 +271,7 @@ void OptionsDialog::on_cancelButton_clicked()
|
||||
QString OptionsDialog::analysisDescription(int level)
|
||||
{
|
||||
//TODO: replace this with meaningful descriptions
|
||||
switch(level)
|
||||
switch (level)
|
||||
{
|
||||
case 0:
|
||||
return tr("-");
|
||||
@ -319,7 +319,7 @@ void OptionsDialog::on_AdvOptButton_clicked()
|
||||
|
||||
void OptionsDialog::on_analCheckBox_clicked(bool checked)
|
||||
{
|
||||
if(!checked)
|
||||
if (!checked)
|
||||
defaultAnalLevel = ui->analSlider->value();
|
||||
ui->analSlider->setValue(checked ? defaultAnalLevel : 0);
|
||||
}
|
||||
|
@ -469,7 +469,7 @@ QList<QString> QRCore::getList(const QString &type, const QString &subtype)
|
||||
{
|
||||
QJsonArray importsArray = cmdj("iij").array();
|
||||
|
||||
foreach(QJsonValue value, importsArray)
|
||||
foreach (QJsonValue value, importsArray)
|
||||
{
|
||||
QJsonObject importObject = value.toObject();
|
||||
unsigned long plt = (unsigned long)importObject["plt"].toVariant().toULongLong();
|
||||
|
@ -106,7 +106,7 @@ void CommentsWidget::on_actionVertical_triggered()
|
||||
|
||||
void CommentsWidget::resizeEvent(QResizeEvent *event)
|
||||
{
|
||||
if(main->responsive && isVisible())
|
||||
if (main->responsive && isVisible())
|
||||
{
|
||||
if (event->size().width() >= event->size().height())
|
||||
{
|
||||
|
@ -409,7 +409,7 @@ void FunctionsWidget::on_nestedFunctionsTree_itemDoubleClicked(QTreeWidgetItem *
|
||||
|
||||
void FunctionsWidget::resizeEvent(QResizeEvent *event)
|
||||
{
|
||||
if(main->responsive && isVisible())
|
||||
if (main->responsive && isVisible())
|
||||
{
|
||||
if (event->size().width() >= event->size().height())
|
||||
{
|
||||
|
@ -533,9 +533,12 @@ void MemoryWidget::refreshDisasm(const QString &offset)
|
||||
if (ele.contains("0x"))
|
||||
{
|
||||
QString fcn = this->main->core->cmdFunctionAt(ele);
|
||||
if (fcn != "") {
|
||||
if (fcn != "")
|
||||
{
|
||||
this->main->core->cmd("s " + fcn);
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
this->main->core->cmd("s " + ele);
|
||||
}
|
||||
}
|
||||
@ -1753,7 +1756,7 @@ void MemoryWidget::on_previewToolButton_2_clicked()
|
||||
|
||||
void MemoryWidget::resizeEvent(QResizeEvent *event)
|
||||
{
|
||||
if(main->responsive && isVisible())
|
||||
if (main->responsive && isVisible())
|
||||
{
|
||||
if (event->size().width() <= 1150)
|
||||
{
|
||||
@ -1834,7 +1837,8 @@ void MemoryWidget::on_actionXRefs_triggered()
|
||||
{
|
||||
// Get function for clicked offset
|
||||
RAnalFunction *fcn = this->main->core->functionAt(ele.toLongLong(0, 16));
|
||||
if (!fcn) {
|
||||
if (!fcn)
|
||||
{
|
||||
return;
|
||||
}
|
||||
XrefsDialog *x = new XrefsDialog(this->main, this);
|
||||
@ -1980,27 +1984,36 @@ void MemoryWidget::on_memTabWidget_currentChanged(int /*index*/)
|
||||
this->updateViews();
|
||||
}
|
||||
|
||||
void MemoryWidget::updateViews() {
|
||||
void MemoryWidget::updateViews()
|
||||
{
|
||||
// Update only the selected view to improve performance
|
||||
|
||||
int index = ui->memTabWidget->tabBar()->currentIndex();
|
||||
if (index == 0) {
|
||||
if (index == 0)
|
||||
{
|
||||
// Disasm
|
||||
if (this->last_disasm_fcn != this->main->current_address) {
|
||||
if (this->last_disasm_fcn != this->main->current_address)
|
||||
{
|
||||
//this->main->add_debug_output("Doing disasm");
|
||||
this->refreshDisasm(this->main->current_address);
|
||||
this->last_disasm_fcn = this->main->current_address;
|
||||
}
|
||||
} else if (index == 1) {
|
||||
}
|
||||
else if (index == 1)
|
||||
{
|
||||
// Hex
|
||||
if (this->last_hexdump_fcn != this->main->current_address) {
|
||||
if (this->last_hexdump_fcn != this->main->current_address)
|
||||
{
|
||||
//this->main->add_debug_output("Doing hex");
|
||||
this->refreshHexdump(this->main->current_address);
|
||||
this->last_hexdump_fcn = this->main->current_address;
|
||||
}
|
||||
} else if (index == 2) {
|
||||
}
|
||||
else if (index == 2)
|
||||
{
|
||||
// Graph
|
||||
if (this->last_graph_fcn != this->main->current_address) {
|
||||
if (this->last_graph_fcn != this->main->current_address)
|
||||
{
|
||||
//this->main->add_debug_output("Doing graph");
|
||||
this->create_graph(this->main->current_address);
|
||||
this->last_graph_fcn = this->main->current_address;
|
||||
|
@ -66,7 +66,7 @@ void SectionsDock::showSectionsContextMenu(const QPoint &pt)
|
||||
|
||||
void SectionsDock::resizeEvent(QResizeEvent *event)
|
||||
{
|
||||
if(main->responsive && isVisible())
|
||||
if (main->responsive && isVisible())
|
||||
{
|
||||
if (event->size().width() >= event->size().height())
|
||||
{
|
||||
|
@ -95,7 +95,8 @@ void SectionsWidget::fillSections(int row, const QString &str, const QString &st
|
||||
QColor("#E74C3C"), //ALIZARIN
|
||||
QColor("#ECF0F1"), //CLOUDS
|
||||
QColor("#BDC3C7"), //SILVER
|
||||
QColor("#95A5A6")}; //COBCRETE
|
||||
QColor("#95A5A6") //COBCRETE
|
||||
};
|
||||
|
||||
QTreeWidgetItem *tempItem = new QTreeWidgetItem();
|
||||
tempItem->setText(0, str);
|
||||
|
Loading…
Reference in New Issue
Block a user