1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
//! `NcChannel*` methods and associated functions.
#![allow(clippy::unnecessary_cast)]
use crate::{
c_api, error, NcAlpha, NcChannel, NcChannels, NcComponent, NcPaletteIndex, NcResult, NcRgb,
};
/// Enables the [`NcChannel`] associated methods and constants.
pub trait NcChannelApi {
// constants
const DEFAULT_MASK: u32 = super::constants::NC_BGDEFAULT_MASK;
const ALPHA_MASK: u32 = super::constants::NC_BG_ALPHA_MASK;
const PALETTE_MASK: u32 = super::constants::NC_BG_PALETTE;
const RGB_MASK: u32 = super::constants::NC_BG_RGB_MASK;
// constructors
fn new() -> Self;
fn with_default() -> Self;
fn from_rgb(rgb: NcRgb) -> Self;
fn from_rgb_alpha(rgb: NcRgb, alpha: NcAlpha) -> Self;
fn from_rgb8(r: NcComponent, g: NcComponent, b: NcComponent) -> Self;
fn from_rgb8_alpha(r: NcComponent, g: NcComponent, b: NcComponent, alpha: NcAlpha) -> Self;
// methods
fn fcombine(&self, bchannel: NcChannel) -> NcChannels;
fn bcombine(&self, fchannel: NcChannel) -> NcChannels;
fn alpha(&self) -> NcAlpha;
fn set_alpha(&mut self, alpha: NcAlpha) -> Self;
fn rgb_p(&self) -> bool;
fn rgb(&self) -> NcRgb;
fn set(&mut self, rgb: NcRgb) -> Self;
fn rgb8(&self) -> (NcComponent, NcComponent, NcComponent);
fn set_rgb8(&mut self, r: NcComponent, g: NcComponent, b: NcComponent) -> Self;
fn r(&self) -> NcComponent;
fn g(&self) -> NcComponent;
fn b(&self) -> NcComponent;
fn set_r(&mut self, r: NcComponent) -> Self;
fn set_g(&mut self, g: NcComponent) -> Self;
fn set_b(&mut self, b: NcComponent) -> Self;
fn default_p(&self) -> bool;
fn set_default(&mut self) -> Self;
fn set_not_default(&mut self) -> Self;
fn palindex(&self) -> NcPaletteIndex;
fn palindex_p(&self) -> bool;
fn set_palindex(&mut self, index: NcPaletteIndex) -> Self;
}
/// Enables the [`NcChannels`] associated methods and constants.
pub trait NcChannelsApi {
// constants
const BG_DEFAULT_MASK: u32 = super::constants::NC_BGDEFAULT_MASK;
const BG_ALPHA_MASK: u32 = super::constants::NC_BG_ALPHA_MASK;
const BG_PALETTE_MASK: u32 = super::constants::NC_BG_PALETTE;
const BG_RGB_MASK: u32 = super::constants::NC_BG_RGB_MASK;
const NOBACKGROUND_MASK: u64 = super::constants::NC_NOBACKGROUND_MASK;
// constructors
fn new() -> Self;
fn with_default() -> Self;
fn from_rgb(fg_rgb: NcRgb, bg_rgb: NcRgb) -> Self;
fn from_rgb_both(rgb: NcRgb) -> Self;
fn from_rgb_alpha(fg_rgb: NcRgb, fg_alpha: NcAlpha, bg_rgb: NcRgb, bg_alpha: NcAlpha) -> Self;
fn from_rgb_alpha_both(rgb: NcRgb, alpha: NcAlpha) -> Self;
fn from_rgb8(
fg_r: NcComponent,
fg_g: NcComponent,
fg_b: NcComponent,
bg_r: NcComponent,
bg_g: NcComponent,
bg_b: NcComponent,
) -> Self;
fn from_rgb8_both(r: NcComponent, g: NcComponent, b: NcComponent) -> Self;
fn from_rgb8_alpha(
fg_r: NcComponent,
fg_g: NcComponent,
fg_b: NcComponent,
fg_alpha: NcAlpha,
bg_r: NcComponent,
bg_g: NcComponent,
bg_b: NcComponent,
bg_alpha: NcAlpha,
) -> Self;
fn from_rgb8_alpha_both(r: NcComponent, g: NcComponent, b: NcComponent, alpha: NcAlpha)
-> Self;
// methods
fn combine(fchannel: NcChannel, bchannel: NcChannel) -> Self;
fn reverse(&mut self) -> Self;
fn fchannel(&self) -> NcChannel;
fn bchannel(&self) -> NcChannel;
fn set_fchannel(&mut self, fchannel: NcChannel) -> Self;
fn set_bchannel(&mut self, bchannel: NcChannel) -> Self;
fn fg_alpha(&self) -> NcAlpha;
fn bg_alpha(&self) -> NcAlpha;
fn set_fg_alpha(&mut self, alpha: NcAlpha) -> NcResult<()>;
fn set_bg_alpha(&mut self, alpha: NcAlpha) -> NcResult<()>;
fn fg_rgb_p(&self) -> bool;
fn bg_rgb_p(&self) -> bool;
fn fg_rgb(&self) -> NcRgb;
fn bg_rgb(&self) -> NcRgb;
fn set_fg_rgb(&mut self, rgb: NcRgb) -> Self;
fn set_bg_rgb(&mut self, rgb: NcRgb) -> Self;
fn fg_rgb8(&self) -> (NcComponent, NcComponent, NcComponent);
fn bg_rgb8(&self) -> (NcComponent, NcComponent, NcComponent);
fn set_fg_rgb8(&mut self, r: NcComponent, g: NcComponent, b: NcComponent) -> Self;
fn set_bg_rgb8(&mut self, r: NcComponent, g: NcComponent, b: NcComponent) -> Self;
fn fg_r(&self) -> NcComponent;
fn fg_g(&self) -> NcComponent;
fn fg_b(&self) -> NcComponent;
fn bg_r(&self) -> NcComponent;
fn bg_g(&self) -> NcComponent;
fn bg_b(&self) -> NcComponent;
fn fg_set_r(&mut self, r: NcComponent) -> Self;
fn fg_set_g(&mut self, g: NcComponent) -> Self;
fn fg_set_b(&mut self, b: NcComponent) -> Self;
fn bg_set_r(&mut self, r: NcComponent) -> Self;
fn bg_set_g(&mut self, g: NcComponent) -> Self;
fn bg_set_b(&mut self, b: NcComponent) -> Self;
fn fg_default_p(&self) -> bool;
fn bg_default_p(&self) -> bool;
fn set_fg_default(&mut self) -> Self;
fn set_fg_not_default(&mut self) -> Self;
fn set_bg_default(&mut self) -> Self;
fn set_bg_not_default(&mut self) -> Self;
fn set_default(&mut self) -> Self;
fn set_not_default(&mut self) -> Self;
fn fg_palindex(&self) -> NcPaletteIndex;
fn bg_palindex(&self) -> NcPaletteIndex;
fn fg_palindex_p(&self) -> bool;
fn bg_palindex_p(&self) -> bool;
fn set_fg_palindex(&mut self, index: NcPaletteIndex) -> Self;
fn set_bg_palindex(&mut self, index: NcPaletteIndex) -> Self;
}
// NcChannel -------------------------------------------------------------------
/// # NcChannel Methods
impl NcChannelApi for NcChannel {
// Constants
/// If this bit is set, we are *not* using the default color.
///
/// Note: this is equivalent to
/// [`NcChannels::BG_DEFAULT_MASK`][NcChannels#associatedconstant.BG_DEFAULT_MASK]
const DEFAULT_MASK: u32 = super::constants::NC_BGDEFAULT_MASK;
/// Extract these bits to get the (background) [`NcAlpha`] mask.
///
/// Note: this is equivalent to
/// [`NcChannels::BG_ALPHA_MASK`][NcChannels#associatedconstant.BG_ALPHA_MASK]
const ALPHA_MASK: u32 = super::constants::NC_BG_ALPHA_MASK;
/// If this bit *and*
/// [`DEFAULT_MASK`][NcChannel#associatedconstant.DEFAULT_MASK] are set,
/// we're using a palette-indexed background color
///
/// Note: this is equivalent to
/// [`NcChannels::BG_PALETTE_MASK`][NcChannels#associatedconstant.BG_PALETTE_MASK]
const PALETTE_MASK: u32 = super::constants::NC_BG_PALETTE;
/// Extract these bits to get the background [`NcRgb`][crate::NcRgb] value.
///
/// Note: this is equivalent to
/// [`NcChannels::BG_RGB_MASK`][NcChannels#associatedconstant.BG_RGB_MASK]
const RGB_MASK: u32 = super::constants::NC_BG_RGB_MASK;
// Constructors
/// New `NcChannel`, set to black and NOT using the "default color".
fn new() -> Self {
0 as NcChannel | c_api::NC_BGDEFAULT_MASK
}
/// New `NcChannel`, set to black and using the "default color".
fn with_default() -> Self {
0 as NcChannel
}
/// New `NcChannel`, expects [`NcRgb`].
fn from_rgb(rgb: NcRgb) -> Self {
Self::new().set(rgb)
}
/// New `NcChannel`, expects [`NcRgb`] & [`NcAlpha`].
fn from_rgb_alpha(rgb: NcRgb, alpha: NcAlpha) -> Self {
Self::new().set(rgb).set_alpha(alpha)
}
/// New `NcChannel`, expects three RGB [`NcComponent`] components.
fn from_rgb8(r: NcComponent, g: NcComponent, b: NcComponent) -> Self {
Self::new().set_rgb8(r, g, b)
}
/// New `NcChannel`, expects three RGB [`NcComponent`] components & [`NcAlpha`].
fn from_rgb8_alpha(r: NcComponent, g: NcComponent, b: NcComponent, alpha: NcAlpha) -> Self {
Self::new().set_rgb8(r, g, b).set_alpha(alpha)
}
// Combine
/// Combines this [`NcChannel`] as foreground, with another as background
/// into an [`NcChannels`].
///
/// *C style function: [channels_combine()][c_api::ncchannels_combine].*
//
// Not in the C API
fn fcombine(&self, bchannel: NcChannel) -> NcChannels {
c_api::ncchannels_combine(*self, bchannel)
}
/// Combines this [`NcChannel`] as background, with another as foreground
/// into an [`NcChannels`].
///
/// *C style function: [channels_combine()][c_api::ncchannels_combine].*
//
// Not in the C API
fn bcombine(&self, fchannel: NcChannel) -> NcChannels {
c_api::ncchannels_combine(fchannel, *self)
}
// Alpha
/// Gets the [`NcAlpha`].
///
/// *C style function: [ncchannel_alpha()][c_api::ncchannel_alpha].*
fn alpha(&self) -> NcAlpha {
c_api::ncchannel_alpha(*self)
}
/// Sets the [`NcAlpha`].
///
/// *C style function: [ncchannel_set_alpha()][c_api::ncchannel_set_alpha].*
fn set_alpha(&mut self, alpha: NcAlpha) -> Self {
c_api::ncchannel_set_alpha(self, alpha);
*self
}
// NcRgb
/// Returns true if the channel is set to RGB color.
///
/// *C style function: [ncchannel_rgb_p()][c_api::ncchannel_rgb_p].*
fn rgb_p(&self) -> bool {
c_api::ncchannel_rgb_p(*self)
}
/// Gets the [`NcRgb`].
///
/// *C style function: [ncchannel_rgb()][c_api::ncchannel_rgb].*
//
// Not in the C API
fn rgb(&self) -> NcRgb {
c_api::ncchannel_rgb(*self)
}
/// Sets the [`NcRgb`], and marks the NcChannel as NOT using the
/// "default color", retaining the other bits unchanged.
///
/// *C style function: [ncchannel_set()][c_api::ncchannel_set].*
fn set(&mut self, rgb: NcRgb) -> Self {
c_api::ncchannel_set(self, rgb);
*self
}
// NcComponent
/// Gets the three [`NcComponent`]s.
///
/// *C style function: [ncchannel_rgb8()][c_api::ncchannel_rgb8].*
fn rgb8(&self) -> (NcComponent, NcComponent, NcComponent) {
let (mut r, mut g, mut b) = (0, 0, 0);
c_api::ncchannel_rgb8(*self, &mut r, &mut g, &mut b);
(r, g, b)
}
/// Sets the three [`NcComponent`]s, and
/// marks the NcChannel as NOT using the "default color".
///
/// *C style function: [ncchannel_set_rgb8()][c_api::ncchannel_set_rgb8].*
fn set_rgb8(&mut self, r: NcComponent, g: NcComponent, b: NcComponent) -> Self {
c_api::ncchannel_set_rgb8(self, r, g, b);
*self
}
/// Gets the red [`NcComponent`].
///
/// *C style function: [ncchannel_r()][c_api::ncchannel_r].*
fn r(&self) -> NcComponent {
c_api::ncchannel_r(*self)
}
/// Gets the green [`NcComponent`].
///
/// *C style function: [ncchannel_g()][c_api::ncchannel_g].*
fn g(&self) -> NcComponent {
c_api::ncchannel_g(*self)
}
/// Gets the blue [`NcComponent`].
///
/// *C style function: [ncchannel_b()][c_api::ncchannel_b].*
fn b(&self) -> NcComponent {
c_api::ncchannel_b(*self)
}
/// Sets the red [`NcComponent`], and returns the new `NcChannel`.
///
/// *C style function: [ncchannel_set_r()][c_api::ncchannel_set_r].*
//
// Not in the C API
fn set_r(&mut self, r: NcComponent) -> Self {
c_api::ncchannel_set_r(self, r)
}
/// Sets the green [`NcComponent`], and returns the new `NcChannel`.
///
/// *C style function: [ncchannel_set_g()][c_api::ncchannel_set_g].*
//
// Not in the C API
fn set_g(&mut self, g: NcComponent) -> Self {
c_api::ncchannel_set_g(self, g)
}
/// Sets the blue [`NcComponent`], and returns the new `NcChannel`.
///
/// *C style function: [ncchannel_set_b()][c_api::ncchannel_set_b].*
//
// Not in the C API
fn set_b(&mut self, b: NcComponent) -> Self {
c_api::ncchannel_set_b(self, b)
}
// default color
/// Is this `NcChannel` using the "default color" rather than RGB/palette-indexed?
///
/// *C style function: [ncchannel_default_p()][c_api::ncchannel_default_p].*
fn default_p(&self) -> bool {
c_api::ncchannel_default_p(*self)
}
/// Marks this `NcChannel` as using its "default color",
/// which also marks it opaque.
///
/// *C style function: [ncchannel_set_default()][c_api::ncchannel_set_default].*
fn set_default(&mut self) -> Self {
c_api::ncchannel_set_default(self)
}
/// Marks this `NcChannel` as *not* using its "default color".
///
/// The following methods also marks the channel as NOT using the "default color":
/// - [`new`][NcChannel#method.new]
/// - [`set`][NcChannel#method.set]
/// - [`set_rgb8`][NcChannel#method.set_rgb8]
///
/// *C style function: [ncchannel_set_not_default()][c_api::ncchannel_set_not_default].*
//
// Not in the C API
fn set_not_default(&mut self) -> Self {
c_api::ncchannel_set_not_default(self)
}
// NcPaletteIndex
/// Extracts the [`NcPaletteIndex`] from the [`NcChannel`].
///
/// The channel must be palette-indexed, or the return value is meaningless.
/// Verify palette indexing with [`palindex_p`][NcChannel#method.palindex_p].
///
/// *C style function: [ncchannel_palindex()][c_api::ncchannel_palindex].*
fn palindex(&self) -> NcPaletteIndex {
c_api::ncchannel_palindex(*self)
}
/// Is this NcChannel using palette-indexed color rather than RGB?
///
/// *C style function: [ncchannel_palindex_p()][c_api::ncchannel_palindex_p].*
fn palindex_p(&self) -> bool {
c_api::ncchannel_palindex_p(*self)
}
/// Sets the [`NcPaletteIndex`] of the [`NcChannel`], and the channel into
/// palette-indexed mode.
///
/// *C style function: [ncchannel_set_palindex()][c_api::ncchannel_set_palindex].*
fn set_palindex(&mut self, index: NcPaletteIndex) -> Self {
c_api::ncchannel_set_palindex(self, index);
*self
}
}
// NcChannels ---------------------------------------------------------------
/// # NcChannels Methods
impl NcChannelsApi for NcChannels {
// Constants
/// If this bit is set, we are *not* using the default background color.
///
/// See the detailed diagram at [`NcChannels`][crate::NcChannels]
const BG_DEFAULT_MASK: u32 = super::constants::NC_BGDEFAULT_MASK;
/// Extract these bits to get the background [`NcAlpha`] mask.
///
/// See the detailed diagram at [`NcChannels`][crate::NcChannels]
const BG_ALPHA_MASK: u32 = super::constants::NC_BG_ALPHA_MASK;
/// If this bit *and*
/// [`BG_DEFAULT_MASK`][NcChannels#associatedconstant.BG_DEFAULT_MASK]
/// are set, we're using a palette-indexed background color.
///
/// See the detailed diagram at [`NcChannels`][crate::NcChannels]
const BG_PALETTE_MASK: u32 = super::constants::NC_BG_PALETTE;
/// Extract these bits to get the background [`NcRgb`][crate::NcRgb] value.
const BG_RGB_MASK: u32 = super::constants::NC_BG_RGB_MASK;
// Constructors
/// New `NcChannels`, set to black and NOT using the "default color".
fn new() -> Self {
Self::combine(
0 as NcChannel | c_api::NC_BGDEFAULT_MASK,
0 as NcChannel | c_api::NC_BGDEFAULT_MASK,
)
}
/// New `NcChannels`, set to black and using the "default color".
fn with_default() -> Self {
Self::combine(0 as NcChannel, 0 as NcChannel)
}
/// New `NcChannels`, expects two separate [`NcRgb`]s for the foreground
/// and background channels.
fn from_rgb(fg_rgb: NcRgb, bg_rgb: NcRgb) -> Self {
Self::combine(NcChannel::from_rgb(fg_rgb), NcChannel::from_rgb(bg_rgb))
}
/// New `NcChannels`, expects a single [`NcRgb`] for both foreground
/// and background channels.
fn from_rgb_both(rgb: NcRgb) -> Self {
let channel = NcChannel::new().set(rgb);
Self::combine(channel, channel)
}
/// New `NcChannels`, expects two separate [`NcRgb`] & [`NcAlpha`] for the
/// foreground and background channels.
fn from_rgb_alpha(fg_rgb: NcRgb, fg_alpha: NcAlpha, bg_rgb: NcRgb, bg_alpha: NcAlpha) -> Self {
Self::combine(
NcChannel::from_rgb(fg_rgb).set_alpha(fg_alpha),
NcChannel::from_rgb(bg_rgb).set_alpha(bg_alpha),
)
}
/// New `NcChannels`, expects [`NcRgb`] & [`NcAlpha`] for both
/// channels.
fn from_rgb_alpha_both(rgb: NcRgb, alpha: NcAlpha) -> Self {
let channel = NcChannel::new().set(rgb).set_alpha(alpha);
Self::combine(channel, channel)
}
/// New `NcChannels`, expects three RGB [`NcComponent`] components
/// for each channel.
fn from_rgb8(
fg_r: NcComponent,
fg_g: NcComponent,
fg_b: NcComponent,
bg_r: NcComponent,
bg_g: NcComponent,
bg_b: NcComponent,
) -> Self {
Self::combine(
NcChannel::from_rgb8(fg_r, fg_g, fg_b),
NcChannel::from_rgb8(bg_r, bg_g, bg_b),
)
}
/// New `NcChannels`, expects three RGB [`NcComponent`] components for
/// both the foreground and background channels.
fn from_rgb8_both(r: NcComponent, g: NcComponent, b: NcComponent) -> Self {
let channel = NcChannel::new().set_rgb8(r, g, b);
Self::combine(channel, channel)
}
/// New `NcChannels`, expects three RGB [`NcComponent`]s and
/// [`NcAlpha`], for both the foreground and background channels.
fn from_rgb8_alpha(
fg_r: NcComponent,
fg_g: NcComponent,
fg_b: NcComponent,
fg_alpha: NcAlpha,
bg_r: NcComponent,
bg_g: NcComponent,
bg_b: NcComponent,
bg_alpha: NcAlpha,
) -> Self {
Self::combine(
NcChannel::from_rgb8_alpha(fg_r, fg_g, fg_b, fg_alpha),
NcChannel::from_rgb8_alpha(bg_r, bg_g, bg_b, bg_alpha),
)
}
/// New `NcChannel`, expects three RGB [`NcComponent`]s.
fn from_rgb8_alpha_both(
r: NcComponent,
g: NcComponent,
b: NcComponent,
alpha: NcAlpha,
) -> Self {
let channel = NcChannel::new().set_rgb8(r, g, b).set_alpha(alpha);
Self::combine(channel, channel)
}
// Combine & Reverse
/// Combines two [`NcChannel`]s into an [`NcChannels`].
///
/// *C style function: [channels_combine()][c_api::ncchannels_combine].*
fn combine(fchannel: NcChannel, bchannel: NcChannel) -> Self {
c_api::ncchannels_combine(fchannel, bchannel)
}
/// Returns the `NcChannels` with the fore- and background's color
/// information swapped, but without touching housekeeping bits.
///
/// Alpha is retained unless it would lead to an illegal state:
/// `HIGHCONTRAST`, `TRANSPARENT` and `BLEND` are taken to `OPAQUE`
/// unless the new value is RGB.
///
/// [`HIGHCONTRAST`][NcAlpha#associatedconstant.HIGHCONTRAST]
/// [`TRANSPARENT`][NcAlpha#associatedconstant.TRANSPARENT]
/// [`BLEND`][NcAlpha#associatedconstant.BLEND]
/// [`OPAQUE`][NcAlpha#associatedconstant.OPAQUE]
///
/// *C style function: [ncchannels_reverse()][c_api::ncchannels_reverse].*
fn reverse(&mut self) -> Self {
*self = c_api::ncchannels_reverse(*self);
*self
}
// NcChannel
/// Extracts the foreground [`NcChannel`].
///
/// *C style function: [ncchannels_fchannel()][c_api::ncchannels_fchannel].*
fn fchannel(&self) -> NcChannel {
c_api::ncchannels_fchannel(*self)
}
/// Extracts the background [`NcChannel`].
///
/// *C style function: [ncchannels_bchannel()][c_api::ncchannels_bchannel].*
fn bchannel(&self) -> NcChannel {
c_api::ncchannels_bchannel(*self)
}
/// Sets the foreground [`NcChannel`].
///
/// *C style function: [ncchannels_set_fchannel()][c_api::ncchannels_set_fchannel].*
fn set_fchannel(&mut self, fchannel: NcChannel) -> Self {
c_api::ncchannels_set_fchannel(self, fchannel)
}
/// Sets the background [`NcChannel`].
///
/// *C style function: [ncchannels_set_bchannel()][c_api::ncchannels_set_bchannel].*
fn set_bchannel(&mut self, bchannel: NcChannel) -> Self {
c_api::ncchannels_set_bchannel(self, bchannel)
}
// Alpha
/// Gets the foreground [`NcAlpha`].
///
/// *C style function: [ncchannels_fg_alpha()][c_api::ncchannels_fg_alpha].*
fn fg_alpha(&self) -> NcAlpha {
c_api::ncchannels_fg_alpha(*self)
}
/// Gets the background [`NcAlpha`].
///
/// *C style function: [ncchannels_bg_alpha()][c_api::ncchannels_bg_alpha].*
fn bg_alpha(&self) -> NcAlpha {
c_api::ncchannels_bg_alpha(*self)
}
/// Sets the foreground [`NcAlpha`].
///
/// *C style function: [ncchannels_set_fg_alpha()][c_api::ncchannels_set_fg_alpha].*
fn set_fg_alpha(&mut self, alpha: NcAlpha) -> NcResult<()> {
error![c_api::ncchannels_set_fg_alpha(self, alpha)]
}
/// Sets the background [`NcAlpha`].
///
/// *C style function: [ncchannels_set_bg_alpha()][c_api::ncchannels_set_bg_alpha].*
fn set_bg_alpha(&mut self, alpha: NcAlpha) -> NcResult<()> {
error![c_api::ncchannels_set_bg_alpha(self, alpha)]
}
// NcRgb
/// Returns true if the foreground channel is set to RGB color.
///
/// *C style function: [ncchannels_fg_rgb_p()][c_api::ncchannels_fg_rgb_p].*
fn fg_rgb_p(&self) -> bool {
c_api::ncchannels_fg_rgb_p(*self)
}
/// Returns true if the background channel is set to RGB color.
///
/// *C style function: [ncchannels_bg_rgb_p()][c_api::ncchannels_bg_rgb_p].*
fn bg_rgb_p(&self) -> bool {
c_api::ncchannels_bg_rgb_p(*self)
}
/// Gets the foreground [`NcRgb`].
///
/// *C style function: [ncchannels_fg_rgb()][c_api::ncchannels_fg_rgb].*
fn fg_rgb(&self) -> NcRgb {
c_api::ncchannels_fg_rgb(*self)
}
/// Gets the background [`NcRgb`].
///
/// *C style function: [ncchannels_bg_rgb()][c_api::ncchannels_bg_rgb].*
fn bg_rgb(&self) -> NcRgb {
c_api::ncchannels_bg_rgb(*self)
}
/// Sets the foreground [`NcRgb`].
///
/// *C style function: [channels_set_fg_rgb()][c_api::ncchannels_set_fg_rgb].*
fn set_fg_rgb(&mut self, rgb: NcRgb) -> Self {
c_api::ncchannels_set_fg_rgb(self, rgb);
*self
}
/// Sets the background [`NcRgb`].
///
/// *C style function: [channels_set_bg_rgb()][c_api::ncchannels_set_bg_rgb].*
fn set_bg_rgb(&mut self, rgb: NcRgb) -> Self {
c_api::ncchannels_set_bg_rgb(self, rgb);
*self
}
// NcComponent
/// Gets the three foreground RGB [`NcComponent`]s (r, g, b).
///
/// *C style function: [channels_fg_rgb8()][c_api::ncchannels_fg_rgb8].*
fn fg_rgb8(&self) -> (NcComponent, NcComponent, NcComponent) {
let (mut r, mut g, mut b) = (0, 0, 0);
c_api::ncchannels_fg_rgb8(*self, &mut r, &mut g, &mut b);
(r, g, b)
}
/// Gets the three background RGB [`NcComponent`]s (r, g, b).
///
/// *C style function: [channels_bg_rgb8()][c_api::ncchannels_bg_rgb8].*
fn bg_rgb8(&self) -> (NcComponent, NcComponent, NcComponent) {
let (mut r, mut g, mut b) = (0, 0, 0);
c_api::ncchannels_bg_rgb8(*self, &mut r, &mut g, &mut b);
(r, g, b)
}
/// Sets the three foreground RGB [`NcComponent`]s (r, g, b), and
/// marks the foreground [`NcChannel`] as not using the "default color".
///
/// *C style function: [channels_set_fg_rgb8()][c_api::ncchannels_set_fg_rgb8].*
fn set_fg_rgb8(&mut self, r: NcComponent, g: NcComponent, b: NcComponent) -> Self {
c_api::ncchannels_set_fg_rgb8(self, r, g, b)
}
/// Sets the three background RGB [`NcComponent`]s (r, g, b), and
/// marks the background [`NcChannel`] as not using the "default color".
///
/// *C style function: [channels_set_bg_rgb8()][c_api::ncchannels_set_bg_rgb8].*
fn set_bg_rgb8(&mut self, r: NcComponent, g: NcComponent, b: NcComponent) -> Self {
c_api::ncchannels_set_bg_rgb8(self, r, g, b)
}
/// Gets the foreground red [`NcComponent`].
///
/// *(No equivalent C style function)*
fn fg_r(&self) -> NcComponent {
c_api::ncchannel_r(c_api::ncchannels_fchannel(*self))
}
/// Gets the foreground green [`NcComponent`].
///
/// *(No equivalent C style function)*
fn fg_g(&self) -> NcComponent {
c_api::ncchannel_g(c_api::ncchannels_fchannel(*self))
}
/// Gets the foreground blue [`NcComponent`].
///
/// *(No equivalent C style function)*
fn fg_b(&self) -> NcComponent {
c_api::ncchannel_b(c_api::ncchannels_fchannel(*self))
}
/// Gets the background red [`NcComponent`].
///
/// *(No equivalent C style function)*
fn bg_r(&self) -> NcComponent {
c_api::ncchannel_r(c_api::ncchannels_bchannel(*self))
}
/// Gets the background green [`NcComponent`].
///
/// *(No equivalent C style function)*
fn bg_g(&self) -> NcComponent {
c_api::ncchannel_g(c_api::ncchannels_bchannel(*self))
}
/// Gets the background blue [`NcComponent`].
///
/// *(No equivalent C style function)*
fn bg_b(&self) -> NcComponent {
c_api::ncchannel_b(c_api::ncchannels_bchannel(*self))
}
/// Sets the foreground red [`NcComponent`], and returns the new `NcChannels`.
///
/// *(No equivalent C style function)*
fn fg_set_r(&mut self, r: NcComponent) -> Self {
let (_, g, b) = self.bg_rgb8();
c_api::ncchannels_set_fg_rgb8(self, r, g, b)
}
/// Sets the foreground green [`NcComponent`], and returns the new `NcChannels`.
///
/// *(No equivalent C style function)*
fn fg_set_g(&mut self, g: NcComponent) -> Self {
let (r, _, b) = self.bg_rgb8();
c_api::ncchannels_set_fg_rgb8(self, r, g, b)
}
/// Sets the foreground blue [`NcComponent`], and returns the new `NcChannels`.
///
/// *(No equivalent C style function)*
fn fg_set_b(&mut self, b: NcComponent) -> Self {
let (r, g, _) = self.bg_rgb8();
c_api::ncchannels_set_fg_rgb8(self, r, g, b)
}
/// Sets the background red [`NcComponent`], and returns the new `NcChannels`.
///
/// *(No equivalent C style function)*
fn bg_set_r(&mut self, r: NcComponent) -> Self {
let (_, g, b) = self.bg_rgb8();
c_api::ncchannels_set_bg_rgb8(self, r, g, b)
}
/// Sets the background green [`NcComponent`], and returns the new `NcChannels`.
///
/// *(No equivalent C style function)*
fn bg_set_g(&mut self, g: NcComponent) -> Self {
let (r, _, b) = self.bg_rgb8();
c_api::ncchannels_set_bg_rgb8(self, r, g, b)
}
/// Sets the background blue [`NcComponent`], and returns the new `NcChannels`.
///
/// *(No equivalent C style function)*
fn bg_set_b(&mut self, b: NcComponent) -> Self {
let (r, g, _) = self.bg_rgb8();
c_api::ncchannels_set_bg_rgb8(self, r, g, b)
}
// default color
/// Is the background using the "default background color"?
///
/// *C style function: [channels_fg_default_p()][c_api::ncchannels_fg_default_p].*
fn fg_default_p(&self) -> bool {
c_api::ncchannels_fg_default_p(*self)
}
/// Is the background using the "default background color"?
///
/// The "default background color" must generally be used to take advantage
/// of terminal-effected transparency.
///
/// *C style function: [channels_bg_default_p()][c_api::ncchannels_bg_default_p].*
fn bg_default_p(&self) -> bool {
c_api::ncchannels_bg_default_p(*self)
}
/// Marks the foreground as using its "default color", and
/// returns the new [`NcChannels`].
///
/// *C style function: [channels_set_fg_default()][c_api::ncchannels_set_fg_default].*
fn set_fg_default(&mut self) -> Self {
c_api::ncchannels_set_fg_default(self)
}
/// Marks the background as using its "default color", and
/// returns the new [`NcChannels`].
///
/// *C style function: [channels_set_bg_default()][c_api::ncchannels_set_bg_default].*
fn set_bg_default(&mut self) -> Self {
c_api::ncchannels_set_bg_default(self)
}
/// Marks the foreground as NOT using its "default color", and
/// returns the new [`NcChannels`].
///
/// *C style function: [channels_set_fg_default()][c_api::ncchannels_set_fg_default].*
//
// Not in the C API
fn set_fg_not_default(&mut self) -> Self {
c_api::ncchannels_set_fg_not_default(self)
}
/// Marks the background as NOT using its "default color", and
/// returns the new [`NcChannels`].
///
/// *C style function: [channels_set_bg_not_default()][c_api::ncchannels_set_bg_not_default].*
//
// Not in the C API
fn set_bg_not_default(&mut self) -> Self {
c_api::ncchannels_set_bg_not_default(self)
}
/// Marks both the foreground and background as using its "default color", and
/// returns the new [`NcChannels`].
///
//
// Not in the C API
fn set_default(&mut self) -> Self {
c_api::ncchannels_set_fg_default(&mut c_api::ncchannels_set_bg_default(self))
}
/// Marks both the foreground and background as NOT using its "default color",
/// and returns the new [`NcChannels`].
///
//
// Not in the C API
fn set_not_default(&mut self) -> Self {
c_api::ncchannels_set_fg_not_default(&mut c_api::ncchannels_set_bg_not_default(self))
}
// NcPaletteIndex
/// Extracts the [`NcPaletteIndex`] from the foreground [`NcChannel`].
///
/// *C style function: [channels_fg_palindex()][c_api::ncchannels_fg_palindex].*
fn fg_palindex(&self) -> NcPaletteIndex {
c_api::ncchannels_fg_palindex(*self)
}
/// Extracts the [`NcPaletteIndex`] from the background [`NcChannel`].
///
/// *C style function: [channels_bg_palindex()][c_api::ncchannels_bg_palindex].*
fn bg_palindex(&self) -> NcPaletteIndex {
c_api::ncchannels_bg_palindex(*self)
}
/// Is the foreground of using an [*indexed*][NcPaletteIndex]
/// [`NcPalette`][crate::NcPalette] color?
///
/// *C style function: [channels_fg_palindex_p()][c_api::ncchannels_fg_palindex_p].*
fn fg_palindex_p(&self) -> bool {
c_api::ncchannels_fg_palindex_p(*self)
}
/// Is the background of using an [*indexed*][NcPaletteIndex]
/// [`NcPalette`][crate::NcPalette] color?
///
/// *C style function: [channels_bg_palindex_p()][c_api::ncchannels_bg_palindex_p].*
fn bg_palindex_p(&self) -> bool {
c_api::ncchannels_bg_palindex_p(*self)
}
/// Sets the foreground of an [`NcChannels`] as using an
/// [*indexed*][NcPaletteIndex] [`NcPalette`][crate::NcPalette] color.
///
/// *C style function: [channels_set_fg_palindex()][c_api::ncchannels_set_fg_palindex].*
fn set_fg_palindex(&mut self, index: NcPaletteIndex) -> Self {
c_api::ncchannels_set_fg_palindex(self, index);
*self
}
/// Sets the background of an [`NcChannels`] as using an
/// [*indexed*][NcPaletteIndex] [`NcPalette`][crate::NcPalette] color.
///
/// *C style function: [channels_set_bg_palindex()][c_api::ncchannels_set_bg_palindex].*
fn set_bg_palindex(&mut self, index: NcPaletteIndex) -> Self {
c_api::ncchannels_set_bg_palindex(self, index);
*self
}
/// Does this glyph completely obscure the background? If so, there's no need
/// to emit a background when rasterizing, a small optimization. These are
/// also used to track regions into which we must not cellblit.
const NOBACKGROUND_MASK: u64 = super::constants::NC_NOBACKGROUND_MASK;
}
