mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
ExpressionModelHandle --> ExpressionModel SingleExpressionModelHandle --> ExpressionModelHandle StorageFunction --> Function StorageCartesianFunction --> CartesianFunction StorageFunctionApp --> FunctionApp
23 lines
673 B
C++
23 lines
673 B
C++
#include "storage_values_function_parameter_controller.h"
|
|
#include "function_app.h"
|
|
#include <assert.h>
|
|
|
|
namespace Shared {
|
|
|
|
const char * StorageValuesFunctionParameterController::title() {
|
|
return m_pageTitle;
|
|
}
|
|
|
|
void StorageValuesFunctionParameterController::viewWillAppear() {
|
|
FunctionApp * myApp = static_cast<FunctionApp *>(app());
|
|
myApp->functionStore()->modelForRecord(m_record)->nameWithArgument(m_pageTitle, Function::k_maxNameWithArgumentSize, m_symbol);
|
|
}
|
|
|
|
void StorageValuesFunctionParameterController::didBecomeFirstResponder() {
|
|
m_selectableTableView.reloadData();
|
|
selectCellAtLocation(0, 0);
|
|
app()->setFirstResponder(&m_selectableTableView);
|
|
}
|
|
|
|
}
|