Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add view files #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

add view files #3

wants to merge 1 commit into from

Conversation

farir1408
Copy link
Collaborator

  • Добавил основную форму приложения.
  • Добавил классы для отображения информации на форме.

Copy link
Collaborator

@leshiy1295 leshiy1295 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Довольно простой код, без паттернов и сложных алгоритмов. В целом, выглядит нормально - по первым двум модулям я могу поставить Вам оценку за ревью.


void Draw::clearMap()
{
pixmap.load("./map.png");
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

это должно быть вынесено в константу/конфигурационный файл

return;
}

void Draw::drawMap()
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

если Вы явно бросаете исключение в методе, то стоит об этом явно указать в сигнатуре

listOfPoint = new QList<QPoint>();
draw = drawOfMainControll;
color = QColor(rand() % 255, rand() % 255, rand() % 255);
if (listOfPoint == NULL)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

new бросает исключение в отличие от malloc
чтобы не бросал, можно передать параметр (std::nothrow)

void clearMap();
void getScale(double *width, double *height);
private:
QTableWidget *tblWidget;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

имеет смысл сделать интерфейсы не зависимыми от Qt (или зависимыми, но по минимуму)
а реализацию, привязанную к Qt, вынести в cpp файл, воспользовавшись тут PIMPL идиомой

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants