Searched refs:scale (Results 1 – 11 of 11) sorted by relevance
| /GUIX-v6.2.1/guix_studio/ |
| D | studiox_screen_driver.c | 87 GX_CANVAS *canvas, GX_RECTANGLE *dirty, int scale, GRID_SNAP_INFO *gsi) in guix_canvas_flush() argument 137 copy_width = Width * scale / 100; in guix_canvas_flush() 138 copy_height = Height * scale / 100; in guix_canvas_flush() 140 Left = Left * scale / 100; in guix_canvas_flush() 141 Top = Top * scale / 100; in guix_canvas_flush() 142 xpos = xpos * scale / 100; in guix_canvas_flush() 143 ypos = ypos * scale / 100; in guix_canvas_flush() 149 canvas_width = canvas->gx_canvas_x_resolution * scale / 100; in guix_canvas_flush() 150 canvas_height = canvas->gx_canvas_y_resolution * scale / 100; in guix_canvas_flush() 168 grid_space *= scale / 100; in guix_canvas_flush() [all …]
|
| D | target_screen.cpp | 422 int scale = GetZoomScale(); in OnLButtonDown() local 424 point.x = point.x * 100 / scale; in OnLButtonDown() 425 point.y = point.y * 100 / scale; in OnLButtonDown() 912 int scale; in InvalidateCrosshairArea() local 916 scale = GetZoomScale(); in InvalidateCrosshairArea() 923 scale = GetZoomScale(); in InvalidateCrosshairArea() 925 rect.left = rect.left * scale / 100; in InvalidateCrosshairArea() 926 rect.top = rect.top * scale / 100; in InvalidateCrosshairArea() 927 rect.right = (rect.right + 1) * scale / 100; in InvalidateCrosshairArea() 928 rect.bottom = (rect.bottom + 1) * scale / 100; in InvalidateCrosshairArea() [all …]
|
| D | target_screen.h | 57 void ZoomIn(int scale); 59 void SetZoomScale(int scale){ mZoomScale = scale; }; in SetZoomScale() argument
|
| D | studiox_screen_driver.h | 46 …n_device, int xpos, int ypos, GX_CANVAS* canvas, GX_RECTANGLE* dirty, int scale, GRID_SNAP_INFO* g… 66 void guix_canvas_paint(HDC dc, GX_RECTANGLE dirty, int scale, GRID_SNAP_INFO *gsi);
|
| D | MainFrm.cpp | 627 int scale = 100; in OnZoom() local 634 scale = mpTargetView->GetTargetScreen()->GetZoomScale(); in OnZoom() 635 scale += 100; in OnZoom() 637 if (scale > 400) in OnZoom() 643 scale = mpTargetView->GetTargetScreen()->GetZoomScale(); in OnZoom() 644 scale -= 100; in OnZoom() 646 if (scale <= 0) in OnZoom() 652 scale = 100; in OnZoom() 655 scale = 200; in OnZoom() 658 scale = 300; in OnZoom() [all …]
|
| D | screen_flow.cpp | 834 void screen_flow::SetScale(int scale) in SetScale() argument 837 mDiagramScale = scale; in SetScale() 838 mScale = MulDiv(scale, dpi, DEFAULT_DPI_96); in SetScale()
|
| D | screen_flow.h | 100 void SetScale(int scale);
|
| D | StudioXProject.cpp | 4098 int scale; in ReadScreenFlow() local 4100 if (!reader.ReadInt("scale", scale)) in ReadScreenFlow() 4102 scale = 100; in ReadScreenFlow() 4105 RANGE_CHECK(scale, SCREEN_FLOW_MIN_SCALE, SCREEN_FLOW_MAX_SCALE); in ReadScreenFlow() 4107 info->screenflow->SetScale(scale); in ReadScreenFlow()
|
| /GUIX-v6.2.1/samples/demo_guix_sprite/ |
| D | demo_guix_sprite.c | 16 int scale = 100; variable 134 width = (scale * DISPLAY_1_X_RESOLUTION) / 100; in create_scaled_map() 135 height = (scale * DISPLAY_1_Y_RESOLUTION) / 100; in create_scaled_map() 158 scale = (int) myevent -> gx_event_payload.gx_event_longdata; in MainWindowEventProcess() 188 if (map -> gx_pixelmap_width != (scale * DISPLAY_1_X_RESOLUTION) / 100) in MainWindowDraw()
|
| /GUIX-v6.2.1/guix_studio/libs/freetype/include/freetype/ |
| D | ftcolor.h | 1360 FT_PaintScale scale; member
|
| /GUIX-v6.2.1/test/guix_studio_test/test_view/ |
| D | test_utils.py | 1102 def zoom_in(scale): argument 1103 send_to_target_screen('CMD_ZOOM_IN', scale) 1104 logging.info('zoom in target view by %d percent' %scale)
|