- [NEW] Ara amb F1 i F2 se pot fer zoom del contingut de la finestra - [NEW] Ja es pot editar els camps de text (pero encara no es guarda a arxiu)
12 lines
244 B
C++
12 lines
244 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace propertygrid
|
|
{
|
|
void start();
|
|
bool stringProperty(std::string label, std::string value);
|
|
std::string getStringPropertyResult();
|
|
void sectionProperty(std::string label);
|
|
void end();
|
|
}
|