freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype-demos][gsoc-2022-chariri-final] [ftinspect] Rena


From: Charlie Jiang (@cqjjjzr)
Subject: [Git][freetype/freetype-demos][gsoc-2022-chariri-final] [ftinspect] Rename `rendering` dir to `glyphcomponents`.
Date: Fri, 02 Sep 2022 05:29:29 +0000

Charlie Jiang pushed to branch gsoc-2022-chariri-final at FreeType / FreeType Demo Programs

Commits:

  • 198b0b65
    by Charlie Jiang at 2022-09-02T13:22:18+08:00
    [ftinspect] Rename `rendering` dir to `glyphcomponents`.
    
    All classes in `rendering` directory will be responsible for draw
    glyphs, either as independent widgets or as `QGraphicsItem`. However, the
    actual drawing part will be placed into `RenderingEngine`. Therefore, we
    rename it to `glyphcomponents`.
    
    * src/ftinspect/rendering/**: Renamed.
    
    * src/ftinspect/CMakeLists.txt, src/ftinspect/meson.build,
      src/ftinspect/maingui.cpp, src/ftinspect/maingui.hpp: Updated.
    

14 changed files:

Changes:

  • src/ftinspect/CMakeLists.txt
    ... ... @@ -23,11 +23,11 @@ add_executable(ftinspect
    23 23
       "engine/engine.cpp"
    
    24 24
       "engine/fontfilemanager.cpp"
    
    25 25
     
    
    26
    -  "rendering/glyphbitmap.cpp"
    
    27
    -  "rendering/glyphoutline.cpp"
    
    28
    -  "rendering/glyphpointnumbers.cpp"
    
    29
    -  "rendering/glyphpoints.cpp"
    
    30
    -  "rendering/grid.cpp"
    
    26
    +  "glyphcomponents/glyphbitmap.cpp"
    
    27
    +  "glyphcomponents/glyphoutline.cpp"
    
    28
    +  "glyphcomponents/glyphpointnumbers.cpp"
    
    29
    +  "glyphcomponents/glyphpoints.cpp"
    
    30
    +  "glyphcomponents/grid.cpp"
    
    31 31
     
    
    32 32
       "widgets/customwidgets.cpp"
    
    33 33
     
    

  • src/ftinspect/rendering/glyphbitmap.cppsrc/ftinspect/glyphcomponents/glyphbitmap.cpp

  • src/ftinspect/rendering/glyphbitmap.hppsrc/ftinspect/glyphcomponents/glyphbitmap.hpp

  • src/ftinspect/rendering/glyphoutline.cppsrc/ftinspect/glyphcomponents/glyphoutline.cpp

  • src/ftinspect/rendering/glyphoutline.hppsrc/ftinspect/glyphcomponents/glyphoutline.hpp

  • src/ftinspect/rendering/glyphpointnumbers.cppsrc/ftinspect/glyphcomponents/glyphpointnumbers.cpp

  • src/ftinspect/rendering/glyphpointnumbers.hppsrc/ftinspect/glyphcomponents/glyphpointnumbers.hpp

  • src/ftinspect/rendering/glyphpoints.cppsrc/ftinspect/glyphcomponents/glyphpoints.cpp

  • src/ftinspect/rendering/glyphpoints.hppsrc/ftinspect/glyphcomponents/glyphpoints.hpp

  • src/ftinspect/rendering/grid.cppsrc/ftinspect/glyphcomponents/grid.cpp

  • src/ftinspect/rendering/grid.hppsrc/ftinspect/glyphcomponents/grid.hpp

  • src/ftinspect/maingui.cpp
    ... ... @@ -4,7 +4,7 @@
    4 4
     
    
    5 5
     
    
    6 6
     #include "maingui.hpp"
    
    7
    -#include "rendering/grid.hpp"
    
    7
    +#include "glyphcomponents/grid.hpp"
    
    8 8
     #include "uihelper.hpp"
    
    9 9
     
    
    10 10
     #include <QApplication>
    

  • src/ftinspect/maingui.hpp
    ... ... @@ -6,10 +6,10 @@
    6 6
     #pragma once
    
    7 7
     
    
    8 8
     #include "engine/engine.hpp"
    
    9
    -#include "rendering/glyphbitmap.hpp"
    
    10
    -#include "rendering/glyphoutline.hpp"
    
    11
    -#include "rendering/glyphpointnumbers.hpp"
    
    12
    -#include "rendering/glyphpoints.hpp"
    
    9
    +#include "glyphcomponents/glyphbitmap.hpp"
    
    10
    +#include "glyphcomponents/glyphoutline.hpp"
    
    11
    +#include "glyphcomponents/glyphpointnumbers.hpp"
    
    12
    +#include "glyphcomponents/glyphpoints.hpp"
    
    13 13
     #include "widgets/customwidgets.hpp"
    
    14 14
     #include "models/customcomboboxmodels.hpp"
    
    15 15
     
    

  • src/ftinspect/meson.build
    ... ... @@ -24,11 +24,11 @@ if qt5_dep.found()
    24 24
         'engine/engine.cpp',
    
    25 25
         'engine/fontfilemanager.cpp',
    
    26 26
     
    
    27
    -    'rendering/glyphbitmap.cpp',
    
    28
    -    'rendering/glyphoutline.cpp',
    
    29
    -    'rendering/glyphpointnumbers.cpp',
    
    30
    -    'rendering/glyphpoints.cpp',
    
    31
    -    'rendering/grid.cpp',
    
    27
    +    'glyphcomponents/glyphbitmap.cpp',
    
    28
    +    'glyphcomponents/glyphoutline.cpp',
    
    29
    +    'glyphcomponents/glyphpointnumbers.cpp',
    
    30
    +    'glyphcomponents/glyphpoints.cpp',
    
    31
    +    'glyphcomponents/grid.cpp',
    
    32 32
     
    
    33 33
         'widgets/customwidgets.cpp',
    
    34 34
     
    


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]