mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 12:57:34 +00:00
LibDraw: Put all classes in the Gfx namespace
I started adding things to a Draw namespace, but it somehow felt really wrong seeing Draw::Rect and Draw::Bitmap, etc. So instead, let's rename the library to LibGfx. :^)
This commit is contained in:
parent
939a605334
commit
11580babbf
269 changed files with 1513 additions and 1315 deletions
|
@ -134,17 +134,17 @@ Field::Field(GUI::Label& flag_label, GUI::Label& time_label, GUI::Button& face_b
|
|||
};
|
||||
m_timer->set_interval(100);
|
||||
set_frame_thickness(2);
|
||||
set_frame_shape(FrameShape::Container);
|
||||
set_frame_shadow(FrameShadow::Sunken);
|
||||
m_mine_bitmap = GraphicsBitmap::load_from_file("/res/icons/minesweeper/mine.png");
|
||||
m_flag_bitmap = GraphicsBitmap::load_from_file("/res/icons/minesweeper/flag.png");
|
||||
m_badflag_bitmap = GraphicsBitmap::load_from_file("/res/icons/minesweeper/badflag.png");
|
||||
m_consider_bitmap = GraphicsBitmap::load_from_file("/res/icons/minesweeper/consider.png");
|
||||
m_default_face_bitmap = GraphicsBitmap::load_from_file("/res/icons/minesweeper/face-default.png");
|
||||
m_good_face_bitmap = GraphicsBitmap::load_from_file("/res/icons/minesweeper/face-good.png");
|
||||
m_bad_face_bitmap = GraphicsBitmap::load_from_file("/res/icons/minesweeper/face-bad.png");
|
||||
set_frame_shape(Gfx::FrameShape::Container);
|
||||
set_frame_shadow(Gfx::FrameShadow::Sunken);
|
||||
m_mine_bitmap = Gfx::Bitmap::load_from_file("/res/icons/minesweeper/mine.png");
|
||||
m_flag_bitmap = Gfx::Bitmap::load_from_file("/res/icons/minesweeper/flag.png");
|
||||
m_badflag_bitmap = Gfx::Bitmap::load_from_file("/res/icons/minesweeper/badflag.png");
|
||||
m_consider_bitmap = Gfx::Bitmap::load_from_file("/res/icons/minesweeper/consider.png");
|
||||
m_default_face_bitmap = Gfx::Bitmap::load_from_file("/res/icons/minesweeper/face-default.png");
|
||||
m_good_face_bitmap = Gfx::Bitmap::load_from_file("/res/icons/minesweeper/face-good.png");
|
||||
m_bad_face_bitmap = Gfx::Bitmap::load_from_file("/res/icons/minesweeper/face-bad.png");
|
||||
for (int i = 0; i < 8; ++i)
|
||||
m_number_bitmap[i] = GraphicsBitmap::load_from_file(String::format("/res/icons/minesweeper/%u.png", i + 1));
|
||||
m_number_bitmap[i] = Gfx::Bitmap::load_from_file(String::format("/res/icons/minesweeper/%u.png", i + 1));
|
||||
|
||||
set_fill_with_background_color(true);
|
||||
reset();
|
||||
|
|
|
@ -113,14 +113,14 @@ private:
|
|||
int m_mine_count { 0 };
|
||||
int m_unswept_empties { 0 };
|
||||
Vector<OwnPtr<Square>> m_squares;
|
||||
RefPtr<GraphicsBitmap> m_mine_bitmap;
|
||||
RefPtr<GraphicsBitmap> m_flag_bitmap;
|
||||
RefPtr<GraphicsBitmap> m_badflag_bitmap;
|
||||
RefPtr<GraphicsBitmap> m_consider_bitmap;
|
||||
RefPtr<GraphicsBitmap> m_default_face_bitmap;
|
||||
RefPtr<GraphicsBitmap> m_good_face_bitmap;
|
||||
RefPtr<GraphicsBitmap> m_bad_face_bitmap;
|
||||
RefPtr<GraphicsBitmap> m_number_bitmap[8];
|
||||
RefPtr<Gfx::Bitmap> m_mine_bitmap;
|
||||
RefPtr<Gfx::Bitmap> m_flag_bitmap;
|
||||
RefPtr<Gfx::Bitmap> m_badflag_bitmap;
|
||||
RefPtr<Gfx::Bitmap> m_consider_bitmap;
|
||||
RefPtr<Gfx::Bitmap> m_default_face_bitmap;
|
||||
RefPtr<Gfx::Bitmap> m_good_face_bitmap;
|
||||
RefPtr<Gfx::Bitmap> m_bad_face_bitmap;
|
||||
RefPtr<Gfx::Bitmap> m_number_bitmap[8];
|
||||
GUI::Button& m_face_button;
|
||||
GUI::Label& m_flag_label;
|
||||
GUI::Label& m_time_label;
|
||||
|
|
|
@ -69,14 +69,14 @@ int main(int argc, char** argv)
|
|||
container->set_preferred_size(0, 36);
|
||||
container->set_layout(make<GUI::HBoxLayout>());
|
||||
auto flag_icon_label = GUI::Label::construct(container);
|
||||
flag_icon_label->set_icon(GraphicsBitmap::load_from_file("/res/icons/minesweeper/flag.png"));
|
||||
flag_icon_label->set_icon(Gfx::Bitmap::load_from_file("/res/icons/minesweeper/flag.png"));
|
||||
auto flag_label = GUI::Label::construct(container);
|
||||
auto face_button = GUI::Button::construct(container);
|
||||
face_button->set_button_style(ButtonStyle::CoolBar);
|
||||
face_button->set_button_style(Gfx::ButtonStyle::CoolBar);
|
||||
face_button->set_size_policy(GUI::SizePolicy::Fixed, GUI::SizePolicy::Fill);
|
||||
face_button->set_preferred_size(36, 0);
|
||||
auto time_icon_label = GUI::Label::construct(container);
|
||||
time_icon_label->set_icon(GraphicsBitmap::load_from_file("/res/icons/minesweeper/timer.png"));
|
||||
time_icon_label->set_icon(Gfx::Bitmap::load_from_file("/res/icons/minesweeper/timer.png"));
|
||||
auto time_label = GUI::Label::construct(container);
|
||||
auto field = Field::construct(*flag_label, *time_label, *face_button, widget, [&](Size size) {
|
||||
size.set_height(size.height() + container->preferred_size().height());
|
||||
|
@ -129,7 +129,7 @@ int main(int argc, char** argv)
|
|||
|
||||
auto help_menu = GUI::Menu::construct("Help");
|
||||
help_menu->add_action(GUI::Action::create("About", [&](const GUI::Action&) {
|
||||
GUI::AboutDialog::show("Minesweeper", load_png("/res/icons/32x32/app-minesweeper.png"), window);
|
||||
GUI::AboutDialog::show("Minesweeper", Gfx::load_png("/res/icons/32x32/app-minesweeper.png"), window);
|
||||
}));
|
||||
menubar->add_menu(move(help_menu));
|
||||
|
||||
|
@ -137,7 +137,7 @@ int main(int argc, char** argv)
|
|||
|
||||
window->show();
|
||||
|
||||
window->set_icon(load_png("/res/icons/minesweeper/mine.png"));
|
||||
window->set_icon(Gfx::load_png("/res/icons/minesweeper/mine.png"));
|
||||
|
||||
return app.exec();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue