Changes between Initial Version and Version 4 of Ticket #8535


Ignore:
Timestamp:
Jul 12, 2020, 12:07:54 PM (4 years ago)
Author:
pulkomandy
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8535

    • Property Owner changed from axeld to nobody
    • Property Status newassigned
    • Property Milestone R1Unscheduled
  • Ticket #8535 – Description

    initial v4  
    22
    33The 2 private functions are:
    4 {{{
    5 #!div style="font-size: 80%"
     4
    65They are declared in headers/private/interface/WindowInfo.h and implemented in InterfaceDefs.cpp
    7   {{{#!c++
     6
     7{{{#!c++
    88  do_minimize_team(...);
    99  do_bring_to_front_team(...);
    10   }}}
    1110}}}
    12 
    1311
    1412I would be nice if these could be exposed as public APIs in BRoster (which already has the related public function):
    1513
    16 {{{
    17 #!div style="font-size: 100%"
    18   {{{#!c++
     14{{{#!c++
    1915  status_t ActivateApp(team_id team) const;
    20   }}}
    2116}}}
    2217
     
    2520It was proposed as a start that we create 2 new '''public''' functions in BRoster:
    2621
    27 {{{
    28 #!div style="font-size: 100%"
    29   {{{#!c++
     22{{{#!c++
    3023  status_t HideTeam(team_id team);
    3124  status_t BringTeamToFront(team_id team);
    32   }}}
    3325}}}