~mir-team/miral/release

« back to all changes in this revision

Viewing changes to miral/window_management_trace.cpp

  • Committer: Bileto Bot
  • Date: 2017-06-21 08:34:34 UTC
  • mfrom: (360.1.1 miral-release)
  • Revision ID: ci-train-bot@canonical.com-20170621083434-e7ftkyg5qr2fzsao
* New upstream release 1.4.0 (https://launchpad.net/miral/+milestone/1.4.0)
  - ABI summary:
    . miral ABI unchanged at 2
  - Enhancements:
    . Support for passing messages to enable Drag & Drop
    . Support for client requested move
    . Port to the undeprecated Mir APIs
    . Added "--cursor-theme" option when configuring a cursor theme
    . Drop support for Mir versions before 0.26
  - Bugs fixed:

Show diffs side-by-side

added added

removed removed

Lines of Context:
547
547
}
548
548
MIRAL_TRACE_EXCEPTION
549
549
 
 
550
void miral::WindowManagementTrace::start_drag_and_drop(miral::WindowInfo& window_info, std::vector<uint8_t> const& handle)
 
551
try {
 
552
    log_input();
 
553
    mir::log_info("%s window_info=%s", __func__, dump_of(window_info).c_str());
 
554
    trace_count++;
 
555
    wrapped.start_drag_and_drop(window_info, handle);
 
556
}
 
557
MIRAL_TRACE_EXCEPTION
 
558
 
 
559
void miral::WindowManagementTrace::end_drag_and_drop()
 
560
try {
 
561
    log_input();
 
562
    mir::log_info("%s window_info=%s", __func__);
 
563
    trace_count++;
 
564
    wrapped.end_drag_and_drop();
 
565
}
 
566
MIRAL_TRACE_EXCEPTION
 
567
 
550
568
void miral::WindowManagementTrace::modify_window(
551
569
    miral::WindowInfo& window_info, miral::WindowSpecification const& modifications)
552
570
try {